mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-15 17:23:23 +03:00
12 lines
297 B
Caddyfile
12 lines
297 B
Caddyfile
:{$CADDY_PORT:80} {
|
|
reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080} {
|
|
trusted_proxies 0.0.0.0/0
|
|
}
|
|
reverse_proxy /.well-known/* http://localhost:{$BACKEND_PORT:8080} {
|
|
trusted_proxies 0.0.0.0/0
|
|
}
|
|
reverse_proxy /* http://localhost:{$PORT:3000} {
|
|
trusted_proxies 0.0.0.0/0
|
|
}
|
|
}
|