91a15d24a8
the proxy responds with a 421, if a host header with an invalid host name is encountered. If nothing is provided (see default .env) all hosts are allowed. Examples: ALLOWED_HOSTS="localhost:8000 127.0.0.1:8000" ALLOWED_HOSTS="some.domain.example.com" Add EXTERNAL_HTTPS_PORT. See .env for the configuration.
16 lines
275 B
Caddyfile
16 lines
275 B
Caddyfile
:8000 {
|
|
reverse_proxy /system/* autoupdate:8002 {
|
|
flush_interval -1
|
|
}
|
|
|
|
@server {
|
|
path /apps/*
|
|
path /rest/*
|
|
path /server-version.txt
|
|
path /media/*
|
|
}
|
|
reverse_proxy @server server:8000
|
|
|
|
reverse_proxy client:4200
|
|
}
|