Static Frontend
Serve HTML/CSS/JS directly from Nginx for speed and simplicity.
Go to /frontend/ →Nginx • Port 80
This is a clean landing page served by Nginx. You can link your backend, serve static files, or reverse-proxy your Node app from here.
# test config
sudo nginx -t
# reload
sudo systemctl reload nginx
# logs
sudo tail -n 50 /var/log/nginx/error.log
Serve HTML/CSS/JS directly from Nginx for speed and simplicity.
Go to /frontend/ →Reverse proxy to a Node app (e.g. running on 3000) behind Nginx.
See example →Copy via scp/rsync, then reload Nginx. No build steps required.
Deployment notes →Want this page to proxy your backend? Example: location /api/ { proxy_pass http://127.0.0.1:3000; }