nisham22
12/27/2017 - 9:48 AM

Jenkins

ssh to the system

ssh root@jenkins.example.com

If nginx is not installed follow the below steps :

sudo apt-get update
sudo apt-get install nginx
link : https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-16-04

Goto the /etc folder and make the changes mentioned below

cd /etc/nginx
 * nginx.conf contains the configuration. Do not edit the file. Refere the http { ... }
cd /etc/nginx/sites-enabled

Create new config file

server {
        listen 80;
        server_name http://abcd.xyz.com;

        location / {
                proxy_pass http://localhost:8080;
        }
}

To start phabricator

nohup ./phabulous_linux_amd64 serve &