Skip to content

Instantly share code, notes, and snippets.

@AbdulR3hman
Created April 16, 2017 23:54
Show Gist options
  • Save AbdulR3hman/bd6ea5142d4a31bdfc99eac9d4d85587 to your computer and use it in GitHub Desktop.
Save AbdulR3hman/bd6ea5142d4a31bdfc99eac9d4d85587 to your computer and use it in GitHub Desktop.
How do I point my custom domain to my IP:Port (41.111.20.36:8080)?
add new record: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-host-name-with-digitalocean
and install nginx
remove default from /etc/nginx/sites-available&Enabled
copy the following and in /etc/nginx/sites-available
server {
listen 80;
listen [::]:80 default ipv6only=on;
server_name ci.yourcompany.com;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://app_server;
break;
}
}
}
and softlink it to sites-enabled;
restart nginx
`
sudo ln -s /etc/nginx/sites-available/myapp /etc/nginx/sites-enabled/myapp
sudo service nginx configtest
sudo service nginx restart
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment