fix: run container on port 80 to match Dokploy domain routing (fixes 502)
Dokploy domains were configured to route to internal port 80, but the Node standalone server listened on 3000, causing Bad Gateway. Align the container's PORT/EXPOSE with Dokploy's routing instead.
This commit is contained in:
@@ -11,7 +11,7 @@ http {
|
||||
default_type application/octet-stream;
|
||||
|
||||
upstream nextjs {
|
||||
server 127.0.0.1:3000;
|
||||
server 127.0.0.1:80;
|
||||
}
|
||||
|
||||
server {
|
||||
|
||||
Reference in New Issue
Block a user