You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Goto IP address of server in browser. Should see something like:
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.
Thank you for using nginx.
sudo vi /etc/nginx/sites_available/default
goto location block
change to (use appropriate port for app):
location / {
proxy_pass http://127.0.0.1:3001/;
}