Skip to content

Commit fe77d49

Browse files
carlosbuenosvinoswouterj
authored andcommitted
Order has one param without spaces
1 parent fa90e24 commit fe77d49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cookbook/configuration/web_server_configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The **minimum configuration** to get your application running under Apache is:
4545
DocumentRoot /var/www/project/web
4646
<Directory /var/www/project/web>
4747
AllowOverride All
48-
Order allow, deny
48+
Order Allow,Deny
4949
Allow from All
5050
</Directory>
5151
@@ -76,7 +76,7 @@ and increase web server performance:
7676
DocumentRoot /var/www/project/web
7777
<Directory /var/www/project/web>
7878
AllowOverride None
79-
Order allow, deny
79+
Order Allow,Deny
8080
Allow from All
8181
8282
<IfModule mod_rewrite.c>
@@ -110,7 +110,7 @@ and increase web server performance:
110110
Using mod_php/PHP-CGI with Apache 2.4
111111
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
112112

113-
In Apache 2.4, ``Order allow,deny`` has been replaced by ``Require all granted``.
113+
In Apache 2.4, ``Order Allow,Deny`` has been replaced by ``Require all granted``.
114114
Hence, you need to modify your ``Directory`` permission settings as follows:
115115

116116
.. code-block:: apache
@@ -223,7 +223,7 @@ should look something like this:
223223
<Directory /var/www/project/web>
224224
# enable the .htaccess rewrites
225225
AllowOverride All
226-
Order allow, deny
226+
Order Allow,Deny
227227
Allow from all
228228
</Directory>
229229

0 commit comments

Comments
 (0)