Page MenuHomePhabricator

Apache Configuration Guide is missing a step: a2ensite
Closed, WontfixPublic

Description

The Configuration Guide appears to be missing an important step for apache2.

Perhaps this is just a difference between using httpd and apache2 (and so the guide may well be OK), but for the record:

You need to create a phabricator.conf entry under /etc/apache2/sites-available/ that contains the <VirtualHost/> blurb that is in the guide.

Then you need to do something along the following lines:

sudo a2dissite 000-default
sudo a2ensite phabricator
sudo service apache2 restart

Finally, as an side, the part about mod_php being required doesn't seem to be true, at least for apache2 on Ubuntu.

Event Timeline

nchammas raised the priority of this task from to Needs Triage.
nchammas updated the task description. (Show Details)
nchammas added a project: Documentation.
nchammas added a subscriber: nchammas.
chad closed this task as Wontfix.EditedMay 4 2015, 2:51 AM
chad claimed this task.
chad added a subscriber: chad.

We generally prefer not to go into a level of detail beyond what is Phabricator specific, as those steps will vary wildly from distribution and versions. There are often plenty of other guides on the web to help you with those steps as well.

Fair enough, that makes sense.