From 6d42a85930361d930e123417472041b6448285d6 Mon Sep 17 00:00:00 2001 From: rudolfn Date: Sun, 10 May 2015 12:49:38 +0200 Subject: [PATCH] Update web_server_configuration.rst Order allow, deny with space after , makes my apache fail during restarting service. deleting the space makes config examples functional. --- cookbook/configuration/web_server_configuration.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cookbook/configuration/web_server_configuration.rst b/cookbook/configuration/web_server_configuration.rst index 8aea0992cff..00c7d83093b 100644 --- a/cookbook/configuration/web_server_configuration.rst +++ b/cookbook/configuration/web_server_configuration.rst @@ -45,7 +45,7 @@ The **minimum configuration** to get your application running under Apache is: DocumentRoot /var/www/project/web AllowOverride All - Order allow, deny + Order allow,deny Allow from All @@ -76,7 +76,7 @@ and increase web server performance: DocumentRoot /var/www/project/web AllowOverride None - Order allow, deny + Order allow,deny Allow from All @@ -223,7 +223,7 @@ should look something like this: # enable the .htaccess rewrites AllowOverride All - Order allow, deny + Order allow,deny Allow from all