server { # server name that should be in the DNS server_name your-server-name.com; root C:\client_www; index index.html index.htm; location ~* index\.html?$ { add_header "X-UA-Compatible" "IE=Edge,chrome=1"; } location /api { proxy_pass http://localhost:3000; proxy_set_header X-Real-IP $remote_addr; } location /gss { proxy_pass http://localhost:8080; proxy_set_header X-Real-IP $remote_addr; } location /gssogc { proxy_pass http://localhost:8080; proxy_set_header X-Real-IP $remote_addr; } }