Skip to content

Instantly share code, notes, and snippets.

@whhsw
whhsw / phabricator_readme.md
Last active August 10, 2018 13:08 — forked from sparrc/phabricator_readme.md
Phabricator Ubuntu Installation Guide

Phabricator Ubuntu Installation Guide

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.

Ubuntu Version:

Till 2018 August, requires ubuntu 16+.

Install bonus packages(unverfired):

apt install software-properties-common

@whhsw
whhsw / mirror.conf
Created March 2, 2016 07:22 — forked from ctrlaltdylan/mirror.conf
The nginx server configuration file needed to host the MirrorMirror application
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