Skip to content

Commit

Permalink
minor #6562 Remove extra spaces in Nginx template (bocharsky-bw)
Browse files Browse the repository at this point in the history
This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes #6562).

Discussion
----------

Remove extra spaces in Nginx template

Commits
-------

5d6e1db Remove extra spaces in Nginx template
  • Loading branch information
wouterj committed May 13, 2016
2 parents c7e2145 + 5d6e1db commit ef3ccd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cookbook/configuration/web_server_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ The **minimum configuration** to get your application running under Nginx is:
# Otherwise, PHP's OPcache may not properly detect changes to
# your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
# for more information).
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
}
# PROD
Expand All @@ -298,7 +298,7 @@ The **minimum configuration** to get your application running under Nginx is:
# Otherwise, PHP's OPcache may not properly detect changes to
# your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
# for more information).
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
# Prevents URIs that include the front controller. This will 404:
# http://domain.tld/app.php/some-path
Expand Down

0 comments on commit ef3ccd9

Please sign in to comment.