fix nginx internal rooting
All checks were successful
Deploy Amap / deploy (push) Successful in 29s

This commit is contained in:
2026-02-20 00:14:51 +01:00
parent b52ac35593
commit 63ea2ff806

View File

@@ -17,10 +17,10 @@ server {
proxy_redirect off;
proxy_buffering off;
proxy_pass http://back;
proxy_pass http://backend;
}
}
upstream backend {
server back:8000;
server backend:8000;
}