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