14 lines
293 B
Caddyfile
14 lines
293 B
Caddyfile
# TFM aInventory - Caddy Static Internal Configuration
|
|
# We use standard ports 443/444 internally to decouple from host-side dynamic ports.
|
|
|
|
https://:443 {
|
|
tls internal
|
|
reverse_proxy frontend:3000
|
|
}
|
|
|
|
# Backend SSL Proxy
|
|
https://:444 {
|
|
tls internal
|
|
reverse_proxy backend:8000
|
|
}
|