This is a supplement to the official Phabricator Installation Guide, because their guide will leave you with all kinds of permission and config errors and ~15,000 setup issues on startup.
Till 2018 August, requires ubuntu 16+.
This is a supplement to the official Phabricator Installation Guide, because their guide will leave you with all kinds of permission and config errors and ~15,000 setup issues on startup.
Till 2018 August, requires ubuntu 16+.
| server { | |
| listen 80; | |
| server_name localhost; | |
| root /home/pi/projects/MirrorMirror/public; | |
| index index.html index.htm index.php; | |
| charset utf-8; | |
| location / { |
| #update package list | |
| sudo apt-get update | |
| # install git | |
| sudo apt-get install g++ curl libssl-dev apache2-utils make | |
| sudo apt-get install git-core | |
| # download the Node source, compile and install it | |
| git clone https://github.com/joyent/node.git | |
| cd node | |
| ./configure | |
| make |