From fcd573e120eaf4b97d05a3bfa225133741c04428 Mon Sep 17 00:00:00 2001 From: accraze Date: Wed, 9 Dec 2015 19:49:47 -0800 Subject: [PATCH] added note about directory permission syntax change docs had httpd 2.2 syntax for directory permission with a link to Apache 2.4 changes. added an example of httpd 2.4 syntax resolves #1644 --- docs/deploying/mod_wsgi.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/deploying/mod_wsgi.rst b/docs/deploying/mod_wsgi.rst index c1ce170a..9145b4f9 100644 --- a/docs/deploying/mod_wsgi.rst +++ b/docs/deploying/mod_wsgi.rst @@ -116,6 +116,20 @@ Note: There have been some changes in access control configuration for `Apache 2 .. _Apache 2.4: http://httpd.apache.org/docs/trunk/upgrading.html +Most notably, the syntax for directory permissions has changed from httpd 2.2 + +.. sourcecode:: apache + + Order allow,deny + Allow from all + +to httpd 2.4 syntax + +.. sourcecode:: apache + + Require all granted + + For more information consult the `mod_wsgi wiki`_. .. _mod_wsgi: http://code.google.com/p/modwsgi/