diff options
author | Gervase Markham <gerv@gerv.net> | 2015-09-15 16:20:57 +0100 |
---|---|---|
committer | Gervase Markham <gerv@gerv.net> | 2015-09-15 16:20:57 +0100 |
commit | 5bf48d6da0a8e24b4a96c6c51826c16287ebcfba (patch) | |
tree | 5247bccf7622fdd6c9c47ef06c9b42c85f88f071 /docs/en | |
parent | 7d5b624cd85cbbe07c590f884831793ecca1253a (diff) | |
download | bugs-5bf48d6da0a8e24b4a96c6c51826c16287ebcfba.tar bugs-5bf48d6da0a8e24b4a96c6c51826c16287ebcfba.tar.gz bugs-5bf48d6da0a8e24b4a96c6c51826c16287ebcfba.tar.bz2 bugs-5bf48d6da0a8e24b4a96c6c51826c16287ebcfba.tar.xz bugs-5bf48d6da0a8e24b4a96c6c51826c16287ebcfba.zip |
Bug 1188824 - add 'require all granted' to <Directory> block for Windows Apache instructions
Diffstat (limited to 'docs/en')
-rw-r--r-- | docs/en/rst/installing/apache-windows.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/en/rst/installing/apache-windows.rst b/docs/en/rst/installing/apache-windows.rst index 5e8ac8928..cf3245aab 100644 --- a/docs/en/rst/installing/apache-windows.rst +++ b/docs/en/rst/installing/apache-windows.rst @@ -82,8 +82,16 @@ Add the following stanza: Options +ExecCGI +FollowSymLinks DirectoryIndex index.cgi index.html AllowOverride Limit FileInfo Indexes Options + Require all granted </Directory> +.. warning:: The above block takes a simple approach to access control + and is correct for Apache 2.4. For Apache 2.2, replace + ``Require all granted`` with ``Allow from all``. If you + have other applications on the server or other access + control requirements, you may need to make further + modifications. + In order for ``ScriptInterpreterSource Registry-Strict`` to work, you also need to add an entry to the Registry so Apache will use Perl to execute .cgi files. |