aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/asset_pipeline.md
diff options
context:
space:
mode:
authorTom von Schwerdtner <tvon@covermymeds.com>2016-02-08 15:20:41 -0500
committerTom von Schwerdtner <tvon@covermymeds.com>2016-02-12 13:53:18 -0500
commit1a61496ae5945c0412a3e1692c5909635fb9f27b (patch)
treedfb90a15e41fa9a174ec8c2ba84c72259714d30e /guides/source/asset_pipeline.md
parentc63f58d0f19220df44f0ddc553030be58309809c (diff)
downloadrails-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/source/asset_pipeline.md')
-rw-r--r--guides/source/asset_pipeline.md2
1 files changed, 1 insertions, 1 deletions
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'