Files
caddy/config/Caddyfile

81 lines
1.6 KiB
Caddyfile

{
email {env.ACME_EMAIL}
}
https://photos.housh.com {
tls {
dns cloudflare {env.CF_AUTH_TOKEN}
resolvers 1.1.1.1
}
# Immich Public Proxy path
@public path /share /share/*
handle @public {
reverse_proxy http://frankenmini.housh.dev:3000
}
# All other paths for photos.
handle {
reverse_proxy http://frankenmini.housh.dev:2283
}
}
*.housh.dev {
tls {
dns cloudflare {env.CF_AUTH_TOKEN}
resolvers 1.1.1.1
}
@pos host po.housh.dev
handle @pos {
reverse_proxy http://roguemini.housh.dev:8080
}
@legacypos host legacy-po.housh.dev, legacy-pos.housh.dev
handle @legacypos {
reverse_proxy http://roguemini.housh.dev:5000
}
@gitea host git.housh.dev
handle @gitea {
reverse_proxy gitea:3000
}
@dash host dash.housh.dev
handle @dash {
reverse_proxy http://roguemini.housh.dev:7575
}
@komodo host komo.housh.dev
handle @komodo {
reverse_proxy komodo:9120
}
@excalidraw host draw.housh.dev
handle @excalidraw {
reverse_proxy excalidraw:80
}
@uptimekuma host uptime.housh.dev
handle @uptimekuma {
reverse_proxy uptime_kuma:3001
}
# @immich host photos.housh.dev
# handle @immich {
# reverse_proxy http://frankenmini.housh.dev:2283
# }
#
# @immichpublicproxy host photo-proxy.housh.dev
# handle @immichpublicproxy {
# reverse_proxy http://frankenmini.housh.dev:3000
# }
@snapp host s.housh.dev
handle @snapp {
reverse_proxy http://roguemini.housh.dev:3000
}
}