Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F686
phab-dev setup
No One
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Authored By
stwalkerster
May 28 2016, 11:25 PM
2016-05-28 23:25:54 (UTC+0)
Size
3 KB
Referenced Files
None
Subscribers
None
phab-dev setup
View Options
#!/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
File Metadata
Details
Attached
Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
594
Default Alt Text
phab-dev setup (3 KB)
Attached To
Mode
P29 phab-dev setup
Attached
Detach File
Event Timeline
Log In to Comment