1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-04 08:28:22 +02:00

Update configuration instructions for Apache 2.4

Summary:
Fixes T4061. Following the instructions in the documentation with Apache 2.4 (which is installed
with Ubuntu 13.10 and other distributions) will result in a "403 forbidden" error.

The instruction provides information on how to fix it.

Test Plan: Tested on apache 2.4 install

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran, asherkin

Maniphest Tasks: T4061

Differential Revision: https://secure.phabricator.com/D7529
This commit is contained in:
Anirudh Sanjeev 2013-11-08 09:58:01 -08:00 committed by epriestley
parent 1bcf478c69
commit 769e921e65

View file

@ -55,13 +55,24 @@ this:
</VirtualHost> </VirtualHost>
If Apache isn't currently configured to serve documents out of the directory If Apache isn't currently configured to serve documents out of the directory
where you put Phabricator, you may also need to add a section like this: where you put Phabricator, you may also need to add `<Directory />` section. The
syntax for this section depends on which version of Apache you're running.
(If you don't know, you can usually figure this out by running `httpd -v`.)
For Apache versions older than 2.4, use this:
name="Apache Older Than 2.4"
<Directory "/path/to/phabricator/webroot"> <Directory "/path/to/phabricator/webroot">
Order allow,deny Order allow,deny
Allow from all Allow from all
</Directory> </Directory>
For Apache versions 2.4 and newer, use this:
name="Apache 2.4 and Newer"
<Directory "/path/to/phabricator/webroot">
Require all granted
</Directory>
After making your edits, restart Apache, then continue to "Setup" below. After making your edits, restart Apache, then continue to "Setup" below.
= Webserver: Configuring nginx = = Webserver: Configuring nginx =