From cc0803b09f4609ca1c363dca363250755926753a Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 17 Jun 2026 22:25:17 +1000 Subject: [PATCH] Point nginx upstream at 127.0.0.1:33033 --- deploy/nginx.conf.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/nginx.conf.example b/deploy/nginx.conf.example index e750dae..46f85fc 100644 --- a/deploy/nginx.conf.example +++ b/deploy/nginx.conf.example @@ -2,12 +2,12 @@ # # Camera (getUserMedia) and DeviceOrientation require a secure context, # so the site MUST be served over HTTPS. nginx terminates TLS here and -# forwards plain HTTP to the Node app on 127.0.0.1:3000. +# forwards plain HTTP to the Node app on 127.0.0.1:33033. # # Adjust server_name, certificate paths, and the upstream port to taste. upstream newbury_nights { - server 127.0.0.1:3000; + server 127.0.0.1:33033; keepalive 32; }