Skip to content

Commit

Permalink
Remove extra spaces in Nginx template
Browse files Browse the repository at this point in the history
  • Loading branch information
bocharsky-bw authored and wouterj committed May 13, 2016
1 parent c7e2145 commit 5d6e1db
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 5d6e1db

Please sign in to comment.