How to point or add the domain in VPS
Step 1: Add domain in Server
Step 2: Set DNS in Domain
Step 3: Nginx Installation
Step 4: Nginx Configuration
To install the packages, execute them in your shell:
$sudo apt update
$sudo apt install nginx
$cd /etc/nginx/sites-available
$nano default
server_name domain.com www.domain.com;
#try_files $uri $uri/ =404;
proxy_pass http://123.234.456:8069;
$sudo service nginx restart