diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 72922a729f04bae88d24b549be0f0072a335c32a..5726df05b7dfccdfaa02f973d470b85c33cbd6a5 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -8,6 +8,7 @@ <%= csp_meta_tag %> <%= stylesheet_link_tag 'application', media: 'all' %> <%= javascript_include_tag 'application' %> + <%= favicon_link_tag 'favicon.png' %> </head> <body> <%= render 'nav' %> diff --git a/app/views/layouts/devise.html.erb b/app/views/layouts/devise.html.erb index 428f9850e22589cce4a059de2a43d938133b2a4e..bf0769f907de1d36782224e0efe78ae5031eb4c6 100644 --- a/app/views/layouts/devise.html.erb +++ b/app/views/layouts/devise.html.erb @@ -8,6 +8,7 @@ <%= csp_meta_tag %> <%= stylesheet_link_tag 'admin', media: 'all' %> <%= javascript_include_tag 'admin' %> + <%= favicon_link_tag 'favicon.png' %> </head> <body data-theme="default" data-layout="fluid"> <div class="main d-flex justify-content-center w-100"> diff --git a/config/environments/production.rb b/config/environments/production.rb index 2ff61f1474898964b55110540370a19c51188eb9..11d9626ffc1d496374a83c896be1b2a5b58abfa6 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -41,7 +41,7 @@ Rails.application.configure do config.active_storage.service = :amazon # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. - # config.force_ssl = true + config.force_ssl = true # Include generic and useful information about system operation, but avoid logging too much # information to avoid inadvertent exposure of personally identifiable information (PII).