From 4d4b4f483702fe67624ca42931ca778f6f02abe2 Mon Sep 17 00:00:00 2001 From: Vasyl Vavrychuk Date: Mon, 10 Sep 2012 18:02:28 +0300 Subject: [PATCH] document running phabricator on builtin PHP webserver Summary: This is based on info from https://github.com/facebook/phabricator/pull/165 Test Plan: View configuration guide Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3467 --- src/docs/developer/running_builtin_php_webserver.diviner | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/docs/developer/running_builtin_php_webserver.diviner diff --git a/src/docs/developer/running_builtin_php_webserver.diviner b/src/docs/developer/running_builtin_php_webserver.diviner new file mode 100644 index 0000000000..1e4bdacb5c --- /dev/null +++ b/src/docs/developer/running_builtin_php_webserver.diviner @@ -0,0 +1,9 @@ +@title Running built-in PHP webserver +@group developer + +As of version 5.4.0, the PHP command line interface provides a built-in web +server. This web server is designed for developmental purposes only, and should +not be used in production. Phabricator can be executed under it with the +command: + + $ php -S localhost:8000 -t path/to/phabricator/webroot/ path/to/phabricator/webroot/index.php