Skip to content

Instantly share code, notes, and snippets.

@parris
Last active December 14, 2023 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parris/381962cbaaa036ff7a1f05785e8a2b5e to your computer and use it in GitHub Desktop.
Save parris/381962cbaaa036ff7a1f05785e8a2b5e to your computer and use it in GitHub Desktop.
Nginx config for NextJS + Websocket server
worker_processes 1;
events {
worker_connections 1024;
}
http {
sendfile off;
keepalive_timeout 65;
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream node {
server 127.0.0.1:3000;
}
upstream websocket {
server 127.0.0.1:3001;
}
server {
listen 3002;
location / {
proxy_pass http://node;
proxy_set_header "Connection" "";
proxy_http_version 1.1;
}
location /ws {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
}
location /_next/webpack-hmr {
proxy_pass http://node;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
}
}
}
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm run \"/^dev:.*/\"",
"dev:next": "next dev",
"dev:wss": "PORT=3001 tsx watch src/server/wssDevServer.ts --tsconfig tsconfig.server.json",
"dev:proxy": "nginx -c $(pwd)/dev.nginx.conf",
"devproxy:stop": "nginx -s stop",
"devproxy:reload": "nginx -s reload",
"...": "the rest of your config",
}
}
@parris
Copy link
Author

parris commented Dec 14, 2023

Updated the nginx config - the previous version wouldn't reconnect properly when you had server restarts. Thanks to nikolay on serverfault for the answer: https://serverfault.com/questions/1149750/local-nginx-server-requires-reload-every-time-dev-server-restarts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment