8000 Remove extra spaces in Nginx template · symfony/symfony-docs@5d6e1db · GitHub
[go: up one dir, main page]

Skip to content

Commit 5d6e1db

Browse files
bocharsky-bwwouterj
authored andcommitted
Remove extra spaces in Nginx template
1 parent c7e2145 commit 5d6e1db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/configuration/web_server_configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ The **minimum configuration** to get your application running under Nginx is:
283283
# Otherwise, PHP's OPcache may not properly detect changes to
284284
# your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
285285
# for more information).
286-
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
286+
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
287287
fastcgi_param DOCUMENT_ROOT $realpath_root;
288288
}
289289
# PROD
@@ -298,7 +298,7 @@ The **minimum configuration** to get your application running under Nginx is:
298298
# Otherwise, PHP's OPcache may not properly detect changes to
299299
# your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
300300
# for more information).
301-
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
301+
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
302302
fastcgi_param DOCUMENT_ROOT $realpath_root;
303303
# Prevents URIs that include the front controller. This will 404:
304304
# http://domain.tld/app.php/some-path

0 commit comments

Comments
 (0)
0