Sha256: 0814b7e2bb05e9de5414666978105046744065d5f73f61d8cf62819ce8176242
Contents?: true
Size: 718 Bytes
Versions: 20
Compression:
Stored size: 718 Bytes
Contents
require "plek" module GovukAppConfig class Railtie < Rails::Railtie initializer "govuk_app_config.configure_govuk_proxy" do |app| if ENV["GOVUK_PROXY_STATIC_ENABLED"] == "true" app.middleware.use GovukProxy::StaticProxy, backend: Plek.find("static") end end initializer "govuk_app_config.configure_open_telemetry" do |app| unless Rails.const_defined?(:Console) GovukOpenTelemetry.configure(app.class.module_parent_name.underscore) end end config.before_initialize do GovukJsonLogging.configure if ENV["GOVUK_RAILS_JSON_LOGGING"] end config.after_initialize do GovukError.configure unless GovukError.is_configured? end end end
Version data entries
20 entries across 20 versions & 1 rubygems