diff --git a/src/docs/user/configuration/configuration_guide.diviner b/src/docs/user/configuration/configuration_guide.diviner index 7c09335a5f..5a5e862750 100644 --- a/src/docs/user/configuration/configuration_guide.diviner +++ b/src/docs/user/configuration/configuration_guide.diviner @@ -55,13 +55,24 @@ this: 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 `` 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" Order allow,deny Allow from all +For Apache versions 2.4 and newer, use this: + + name="Apache 2.4 and Newer" + + Require all granted + + After making your edits, restart Apache, then continue to "Setup" below. = Webserver: Configuring nginx =