diff options
| author | Florent Peyraud | 2018-01-08 15:55:43 +0100 |
|---|---|---|
| committer | Florent Peyraud | 2018-01-08 15:55:43 +0100 |
| commit | b4f2157262cbd8cff9c78997449492c809681813 (patch) | |
| tree | 71b01a7c965c4c5dae81a3225c61ed5a8f0abf64 | |
| parent | a034cc666efdca55083a4c52af4a350e8a12da26 (diff) | |
| download | chouette-core-b4f2157262cbd8cff9c78997449492c809681813.tar.bz2 | |
fix default RAIL_HOST
| -rw-r--r-- | config/environments/production.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index cb50cd145..9a699eb44 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -47,6 +47,7 @@ Rails.application.configure do # Set to :debug to see everything in the log. # config.log_level = :info + config.log_level = :info # Prepend all log lines with the following tags. # config.log_tags = [ :subdomain, :uuid ] @@ -133,7 +134,7 @@ Rails.application.configure do # IEV config.iev_url = ENV.fetch('IEV_URL',"http://iev:8080") - config.rails_host = ENV.fetch('RAILS_HOST','http://front') + config.rails_host = ENV.fetch('RAILS_HOST','http://front:3000') # Set node env for browserify-rails # config.browserify_rails.node_env = "production" |
