Server Home

Nginx • Port 80

Your server is up and running.

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.

Server
65.109.197.17
Service
Nginx Static
Path
/ (root)

Quick Commands

# test config
sudo nginx -t

# reload
sudo systemctl reload nginx

# logs
sudo tail -n 50 /var/log/nginx/error.log

Status

  • Nginx is serving this page
  • Port 80 reachable
  • Add HTTPS when ready

Static Frontend

Serve HTML/CSS/JS directly from Nginx for speed and simplicity.

Go to /frontend/ →

Node Backend

Reverse proxy to a Node app (e.g. running on 3000) behind Nginx.

See example →

Next steps

Want this page to proxy your backend? Example: location /api/ { proxy_pass http://127.0.0.1:3000; }