diff options
author | Xavier Noria <fxn@hashref.com> | 2014-06-07 02:17:25 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2014-06-07 02:17:25 -0700 |
commit | ad539dcb30742c019e008ccc571bfeff77e8b24c (patch) | |
tree | ff2420da7f8135edffc6b08855becc9fbb0b5be5 /railties/lib | |
parent | a6c8cde83526e4ec5b1212b5e6d1e512ebf7c0ec (diff) | |
parent | b6760d8f14af6b00250395f2c830b89e43621860 (diff) | |
download | rails-ad539dcb30742c019e008ccc571bfeff77e8b24c.tar.gz rails-ad539dcb30742c019e008ccc571bfeff77e8b24c.tar.bz2 rails-ad539dcb30742c019e008ccc571bfeff77e8b24c.zip |
Merge pull request #15555 from akshay-vishnoi/doc_changes
Fix capitalization
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt b/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt index 9ed71687ea..a2aa7c09db 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +++ b/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt @@ -16,10 +16,10 @@ Rails.application.configure do # Enable Rack::Cache to put a simple HTTP cache in front of your application # Add `rack-cache` to your Gemfile before enabling this. - # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid. + # For large-scale production use, consider using a caching reverse proxy like NGINX, varnish or squid. # config.action_dispatch.rack_cache = true - # Disable Rails's static asset server (Apache or nginx will already do this). + # Disable Rails's static asset server (Apache or NGINX will already do this). config.serve_static_assets = false <%- unless options.skip_sprockets? -%> @@ -37,8 +37,8 @@ Rails.application.configure do <%- end -%> # Specifies the header that your server uses for sending files. - # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache - # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx + # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. # config.force_ssl = true |