Page MenuHomePhabricator

phab-dev setup
ActivePublic

Authored by stwalkerster on May 28 2016, 9:07 PM.
Tags
None
Referenced Files
F686: phab-dev setup
May 28 2016, 11:25 PM
F685: phab-dev setup
May 28 2016, 11:23 PM
F684: phab-dev setup
May 28 2016, 11:14 PM
F683: phab-dev setup
May 28 2016, 11:10 PM
F682: phab-dev setup
May 28 2016, 10:45 PM
F678: phab-dev setup
May 28 2016, 10:28 PM
F676: phab-dev setup
May 28 2016, 10:24 PM
F673: phab-dev setup
May 28 2016, 10:21 PM
Subscribers
None
#!/bin/bash -xe
################## update base packages ##################
# disable cdrom
cat /etc/apt/sources.list | sed 's/^\([^#].*cdrom.*\)/# \1/g' > /etc/apt/sources.list.new
mv /etc/apt/sources.list /etc/apt/sources.list.old
mv /etc/apt/sources.list.new /etc/apt/sources.list
apt-get update
apt-get install sudo htop apache2 php5 php5-fpm php5-cli git php5-mysql php5-curl php5-apcu php5-gd php5-ldap augeas-tool
################## join active directory domain ##################
wget http://download.beyondtrust.com/PBISO/8.3/pbis-open-8.3.0.3287.linux.x86_64.deb.sh
chmod a+x pbis-open-8.3.0.3287.linux.x86_64.deb.sh
./pbis-open-8.3.0.3287.linux.x86_64.deb.sh
# enable sudo
echo "%domain^admins ALL=(ALL) ALL" > /etc/sudoers.d/activedirectory
# join AD domain
/opt/pbis/bin/domainjoin-cli join scimonshouse.net stwalkerster
############## install FPM / Apache2 #######################
cat /etc/php5/fpm/pool.d/www.conf | \
sed 's/\[www\]/[phabricator]/' | \
sed 's/^user = www-data/user = phabricator/' | \
sed 's/^group = www-data/group = phabricator/' | \
sed 's#^listen = /var/run/php5-fpm.sock#listen = 127.0.0.1:30000#' \
> /etc/php5/fpm/pool.d/phabricator.conf
a2enmod access_compat alias cgi dir env expires filter headers proxy proxy_fcgi proxy_http rewrite
cat /etc/apache2/sites-enabled/000-default.conf | \
sed '/<\/VirtualHost>/ i\' | \
sed '/<\/VirtualHost>/ i\ SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1' | \
sed '/<\/VirtualHost>/ i\' | \
sed '/<\/VirtualHost>/ i\ RewriteEngine on' | \
sed '/<\/VirtualHost>/ i\ RewriteRule ^/rsrc/(.*) - [L,QSA]' | \
sed '/<\/VirtualHost>/ i\ RewriteRule ^/favicon.ico - [L,QSA]' | \
sed '/<\/VirtualHost>/ i\ RewriteRule ^(.*)$ fcgi://127.0.0.1:30000/opt/phabricator/phabricator/webroot/index.php?__path__=$1 [B,L,QSA,P]' \
> /etc/apache2/sites-enabled/000-default.new
mv /etc/apache2/sites-enabled/000-default.conf /etc/apache2/sites-enabled/000-default.old
mv /etc/apache2/sites-enabled/000-default.new /etc/apache2/sites-enabled/000-default.conf
############## install phabricator #####################
mkdir /opt/phabricator
groupadd phabricator
useradd -d /opt/phabricator -M -s /bin/bash -g phabricator phabricator
# restart web stuff (after user creation or it'll fail)
service php5-fpm restart
service apache2 restart
# set access permissions
chown phabricator:phabricator /opt/phabricator
chmod g+s /opt/phabricator
cd /opt/phabricator
sudo -u phabricator git clone https://github.com/phacility/libphutil.git
sudo -u phabricator git clone https://github.com/phacility/arcanist.git
sudo -u phabricator git clone https://github.com/phacility/phabricator.git
cd phabricator
# set up database
sudo -u phabricator ./bin/config set mysql.host ninetales.scimonshouse.net
sudo -u phabricator ./bin/config set mysql.user phabricator
sudo -u phabricator ./bin/config set mysql.pass phabricator
sudo -u phabricator ./bin/storage upgrade --force
# set up user accounts
sudo -u phabricator ./bin/config set diffusion.ssh-user git
echo "git ALL=(phabricator) SETENV: NOPASSWD: /usr/bin/git, /usr/bin/git-upload-pack, /usr/bin/git-receive-pack" > /etc/sudoers.d/phabricator

Event Timeline

stwalkerster changed the visibility from "All Users" to "Public (No Login Required)".
stwalkerster edited the content of this paste. (Show Details)
import-bot changed the edit policy from "All Users" to "Community (Project)".Feb 3 2017, 3:03 PM