Deployment

Build once, serve with Nginx.

This route summarizes the deployment model used by the repository: static export from Next.js, then direct hosting from Nginx.

Build

Run npm install and npm run build. The exported site will be written to out/.

Deploy

Copy the contents of out/ to your Nginx web root, for example /usr/share/nginx/html/signalos.

Routing

The project uses trailingSlash: true so each route exports as a folder with an index.html, which works well with static Nginx hosting.

Nginx Config

Use the repository Nginx config as a baseline and point the server root at the exported out/ directory.