mirror of
https://github.com/ION606/sharing.git
synced 2026-05-14 21:56:54 +00:00
25 lines
398 B
Caddyfile
25 lines
398 B
Caddyfile
{
|
||
# we’re behind cloudflare tunnel; terminate tls there
|
||
auto_https off
|
||
}
|
||
|
||
:8550 {
|
||
# route by host header to each backend
|
||
@paste host {env.PASTE_DOMAIN}
|
||
handle @paste {
|
||
reverse_proxy privatebin:8080
|
||
}
|
||
|
||
@files host {env.FILES_DOMAIN}
|
||
handle @files {
|
||
reverse_proxy lufi:8081
|
||
}
|
||
|
||
@short host {env.SHORT_DOMAIN}
|
||
handle @short {
|
||
reverse_proxy shlink:8080
|
||
}
|
||
|
||
respond "not found" 404
|
||
}
|