diff options
author | Tom von Schwerdtner <tvon@covermymeds.com> | 2016-02-08 15:20:41 -0500 |
---|---|---|
committer | Tom von Schwerdtner <tvon@covermymeds.com> | 2016-02-12 13:53:18 -0500 |
commit | 1a61496ae5945c0412a3e1692c5909635fb9f27b (patch) | |
tree | dfb90a15e41fa9a174ec8c2ba84c72259714d30e /guides | |
parent | c63f58d0f19220df44f0ddc553030be58309809c (diff) | |
download | rails-1a61496ae5945c0412a3e1692c5909635fb9f27b.tar.gz rails-1a61496ae5945c0412a3e1692c5909635fb9f27b.tar.bz2 rails-1a61496ae5945c0412a3e1692c5909635fb9f27b.zip |
Use correct path in documentation.
s/config\/production/config\/environments\/production/
[ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/4_2_release_notes.md | 2 | ||||
-rw-r--r-- | guides/source/asset_pipeline.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index 8a59007420..73e6c2c05b 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -405,7 +405,7 @@ Please refer to the [Changelog][railties] for detailed changes. url: http://localhost:3001 namespace: my_app_development - # config/production.rb + # config/environments/production.rb Rails.application.configure do config.middleware.use ExceptionNotifier, config_for(:exception_notification) end diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 4efffc6605..5dd54bf8ad 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -901,7 +901,7 @@ your CDN server, you need to tell browsers to use your CDN to grab assets instead of your Rails server directly. You can do this by configuring Rails to set your CDN as the asset host instead of using a relative path. To set your asset host in Rails, you need to set `config.action_controller.asset_host` in -`config/production.rb`: +`config/environments/production.rb`: ```ruby config.action_controller.asset_host = 'mycdnsubdomain.fictional-cdn.com' |