fix: environment variable API_URL can't be changed

This commit is contained in:
Elias Schneider
2024-10-18 16:07:32 +02:00
parent 958b79d787
commit fe085b58a5
5 changed files with 11 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
:3000 {
# Reverse proxy for /api
reverse_proxy /api/* http://localhost:8080
reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080}
# Reverse proxy for all other requests
reverse_proxy http://localhost:3333
reverse_proxy http://localhost:{$PORT:3333}
}