Nginx Virtual Host configuration example
server {
listen 80;
server_name test.com www.test.com;
location / {
proxy_pass http://your_ip_address:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Replace test.com with your domain name and your_ip_address with the IP address of your server.