From a088ce90f2495d6da8678f60454ac427167de6bf Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 18 Feb 2014 09:29:22 -0500 Subject: [PATCH] [1.6.x] Fixed #22062 -- Corrected static files config for Apache >= 2.4 Backport of ffa238c3f7 from master --- docs/howto/deployment/wsgi/modwsgi.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt index c6437bed97d..4bf2fca4825 100644 --- a/docs/howto/deployment/wsgi/modwsgi.txt +++ b/docs/howto/deployment/wsgi/modwsgi.txt @@ -140,12 +140,12 @@ will be served using mod_wsgi:: Order deny,allow - Allow from all + Require all granted Order deny,allow - Allow from all + Require all granted WSGIScriptAlias / /path/to/mysite.com/mysite/wsgi.py @@ -153,10 +153,13 @@ will be served using mod_wsgi:: Order allow,deny - Allow from all + Require all granted +If you are using a version of Apache older than 2.4, replace +``Require all granted`` with ``Allow from all``. + .. _lighttpd: http://www.lighttpd.net/ .. _Nginx: http://wiki.nginx.org/Main .. _TUX: http://en.wikipedia.org/wiki/TUX_web_server