Select the types of activity you want to include in your feed.
@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
···171171 }
172172 }
173173174174+= Webserver: Configuring lighttpd =
175175+176176+For lighttpd, add a section like this to your lighttpd.conf:
177177+178178+ $HTTP["host"] =~ "phabricator(\.example\.com)?" {
179179+ server.document-root = "/path/to/phabricator/webroot"
180180+ url.rewrite-once = (
181181+ "^(/rsrc/.*)$" => "$1",
182182+ "^(/favicon.ico)$" => "$1",
183183+ # This simulates QSA ("query string append") mode in apache
184184+ "^(/[^?]*)\?(.*)" => "/index.php?__path__=$1&$2",
185185+ "^(/.*)$" => "/index.php?__path__=$1",
186186+ )
187187+ setenv.add-environment = (
188188+ "PHABRICATOR_ENV" => "custom/myconfig",
189189+ )
190190+ }
191191+192192+You should also ensure the following modules are listed in your
193193+server.modules list:
194194+195195+ mod_fastcgi
196196+ mod_rewrite
197197+ mod_setenv
198198+199199+Finally, you should run the following commands to enable php support:
200200+201201+ $ sudo apt-get install php5-cgi # for ubuntu; other distros should be similar
202202+ $ sudo lighty-enable-mod fastcgi-php
203203+174204= Setup =
175205176206Now, restart your webserver and navigate to whichever subdomain you set up. You
+3-2
src/docs/installation_guide.diviner
···1414 patches.) Phabricator has active contributors running it on Mac OS X, Amazon
1515 Linux, Ubuntu, RHEL and CentOS; if you run into issues on other flavors,
1616 send patches or complaints.
1717- - **Apache** (or nginx): You need Apache (or nginx). You might be able to use
1818- something else, but you're on your own.
1717+ - **Apache** (or nginx, or lighttpd): You need Apache (or another
1818+ tested webserver). You can probably use something else, but you're
1919+ on your own.
1920 - **MySQL**: You need MySQL.
2021 - **PHP**: You need PHP 5.2 or newer.
2122