How to deploy Next.js static export with Nginx? (deep links not working)
I made a next.js export into the out folder. Folder structure is: out index.html terms.html privacy.html I set up nginx to serve files from this folder: server { root /var/www/myproject/out; index index.html index.htm index.nginx-debian.html; server_name myproject.com; location / { try_files…