chore: change location of Caddyfiles

This commit is contained in:
Elias Schneider
2024-12-24 16:06:59 +01:00
parent 3946f6f237
commit 7e09ae1f98
4 changed files with 16 additions and 19 deletions

View File

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

View File

@@ -1,14 +1,11 @@
:3000 {
reverse_proxy /* http://localhost:{$PORT:3333} {
trusted_proxies 0.0.0.0/0
}
# Reverse proxy for /api
reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080} {
trusted_proxies 0.0.0.0/0
}
reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080} {
trusted_proxies 0.0.0.0/0
}
log {
output file /var/log/caddy/access.log
level WARN
}
}
# Reverse proxy for all other requests
reverse_proxy /* http://localhost:{$PORT:3333} {
trusted_proxies 0.0.0.0/0
}
}