fix: correct nginx config

This commit is contained in:
Kakious 2024-10-16 17:42:59 -04:00
parent 5c927a26cd
commit 44c5303646

View file

@ -39,7 +39,7 @@ http {
#Frontend Next.js App
location / {
resolver 127.0.0.11 valid=30s; # Docker DNS
proxy_pass http://host.docker.internal:3001/; # Local back end
proxy_pass http://host.docker.internal:3000/; # Local back end
proxy_redirect default;
}
}