summaryrefslogtreecommitdiffstats
path: root/files/phabricator/phabricator-vhost.conf
blob: abf1d6f3a60a7b65091129056ac8886a0e4dca92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
NameVirtualHost *:80

<Directory "/srv">
  Options All
  AllowOverride All
  Require all granted
</Directory>

<VirtualHost *:80>
  ServerName {{domain}}
  DocumentRoot /srv/www/facebook/phabricator/webroot

  RewriteEngine on
  RewriteRule ^/rsrc/(.*)     -                       [L,QSA]
  RewriteRule ^/favicon.ico   -                       [L,QSA]
  RewriteRule ^(.*)$          /index.php?__path__=$1  [B,L,QSA]

  SetEnv PHABRICATOR_ENV custom/myconfig
</VirtualHost>