From bbe03d0af661f0c7f01d2821abb130cd3bb37bec Mon Sep 17 00:00:00 2001 From: pants Date: Mon, 16 Feb 2026 21:57:12 -0800 Subject: [PATCH] get this in here --- caddy/Caddyfile | 82 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 caddy/Caddyfile diff --git a/caddy/Caddyfile b/caddy/Caddyfile new file mode 100644 index 0000000..6fa891b --- /dev/null +++ b/caddy/Caddyfile @@ -0,0 +1,82 @@ +# The Caddyfile is an easy way to configure your Caddy web server. +# +# To use your own domain name (with automatic HTTPS), first make +# sure your domain's A/AAAA DNS records are properly pointed to +# this machine's public IP, then replace the line below with your +# domain name. + +# Unless the file starts with a global options block, the first +# uncommented line is always the address of your site. +# Caddy will automatically obtain ACME certs for domains +# example.com { +# root * /path/to/example.com +# file_server +# } +# Refer to the Caddy docs for more information: +# https://caddyserver.com/docs/caddyfile + +# johnsonfamilies.net +pbs.johnsonfamilies.net { + reverse_proxy https://10.100.1.100:8007 +} + +portainer.johnsonfamilies.net { + reverse_proxy http://10.100.1.51:9000 +} + +cloud.johnsonfamilies.net { + reverse_proxy http://10.100.1.53:11000 +} + +pve.johnsonfamilies.net { + reverse_proxy https://10.100.1.50:8006 +} + +kuma.johnsonfamilies.net { + reverse_proxy http://10.100.1.51:3001 +} + +ds1621.johnsonfamilies.net { + reverse_proxy http://10.100.0.58:5000 +} + +ds1513.johnsonfamilies.net { + reverse_proxy https://10.100.0.194:5001 +} + +files.r720.johnsonfamilies.net { + reverse_proxy http://10.100.0.214:8080 +} +chat.johnsonfamilies.net { + reverse_proxy http://10.100.1.51:8080 +} +# galacticpants.net +unifi.galacticpants.net { + reverse_proxy https://10.100.0.1:443 { + transport http { + tls_insecure_skip_verify + } + } +} +jellyfin.galacticpants.net { + reverse_proxy http://10.100.1.1:8196 +} +chat.galacticpants.net { + reverse_proxy http://10.100.1.1:3030 +} +vault.galacticpants.net { + reverse_proxy http://10.100.1.1:9090 +} +git.galacticpants.net { + reverse_proxy http://10.100.1.1:3000 +} +home.galacticpants.net { + reverse_proxy http://10.100.1.150:8123 +} +immich.galacticpants.net { + reverse_proxy http://10.100.1.1:2283 +} +fs.galacticpants.net { + root / + file_server browse +}