From cef629cd63a358322178528e7d8b7ac8af700d99 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Tue, 4 Nov 2014 10:03:24 -0500 Subject: [PATCH] Fixes thanks to @xabbuh --- cookbook/configuration/web_server_configuration.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/configuration/web_server_configuration.rst b/cookbook/configuration/web_server_configuration.rst index 8d0e691d29e..f92c801a724 100644 --- a/cookbook/configuration/web_server_configuration.rst +++ b/cookbook/configuration/web_server_configuration.rst @@ -223,9 +223,9 @@ are: include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS off; - # Prevents URI's that include the front controller. This will 404: + # Prevents URIs that include the front controller. This will 404: # http://domain.tld/app.php/some-path - # Remove the internal directive to allow URI's like this + # Remove the internal directive to allow URIs like this internal; }