File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ``.
114114Hence, 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
You can’t perform that action at this time.
0 commit comments