about summary refs log tree commit diff
path: root/config/environments/production.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-26 15:27:05 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-26 15:27:05 +0100
commit6c82dfcf5fd51e652490b927fbf5773c3f52e803 (patch)
treedc572623f73e94beb0b51fa309b95c10de200158 /config/environments/production.rb
parent950312bada605e9df832aa05fe5010450af9a567 (diff)
Fix CDN_HOST variable requirement
Diffstat (limited to 'config/environments/production.rb')
-rw-r--r--config/environments/production.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb
index dcb659d6c..0672cd587 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -13,7 +13,7 @@ Rails.application.configure do
   # Full error reports are disabled and caching is turned on.
   config.consider_all_requests_local       = false
   config.action_controller.perform_caching = true
-  config.action_controller.asset_host      = ENV['CDN_HOST']
+  config.action_controller.asset_host      = ENV['CDN_HOST'] if ENV.key?('CDN_HOST')
 
   # Disable serving static files from the `/public` folder by default since
   # Apache or NGINX already handles this.