Update Caddyfile to replace hostname references with IP addresses and remove obsolete Docker Compose file for memos service

This commit is contained in:
Peter Wood
2025-05-22 12:04:37 -04:00
parent f58974fec0
commit 6372b625da
2 changed files with 12 additions and 21 deletions

View File

@@ -16,7 +16,8 @@ ptrwd.com {
}
}
# this is the the wiki
reverse_proxy ts-racknerd.whale-woodpecker.ts.net:8300
# 100.108.70.63 is ts-racknerd
reverse_proxy 100.108.70.63:8300
}
wiki.ptrwd.com {
@@ -34,7 +35,8 @@ wiki.ptrwd.com {
# Proxy all other requests to the wiki
route {
reverse_proxy ts-racknerd.whale-woodpecker.ts.net:8300
# 100.108.70.63 is ts-racknerd
reverse_proxy 100.108.70.63:8300
}
}
@@ -80,7 +82,8 @@ sonarr.home.ptrwd.com {
# Allow connections only from private ranges and home IP
@allowAccess client_ip 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 162.203.102.154/32
handle @allowAccess {
reverse_proxy ts-io.whale-woodpecker.ts.net:8989
# 100.114.112.100 is ts-io
reverse_proxy 100.114.112.100:8989
}
handle {
respond 403
@@ -97,7 +100,8 @@ radarr.home.ptrwd.com {
# Allow connections only from private ranges and home IP
@allowAccess client_ip 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 162.203.102.154/32
handle @allowAccess {
reverse_proxy ts-io.whale-woodpecker.ts.net:7878
# 100.114.112.100 is ts-io
reverse_proxy 100.114.112.100:7878
}
handle {
respond 403
@@ -114,7 +118,8 @@ io.home.ptrwd.com {
# Allow connections only from private ranges and home IP
@allowAccess client_ip 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 162.203.102.154/32
handle @allowAccess {
reverse_proxy ts-io.whale-woodpecker.ts.net:5001
# 100.114.112.100 is ts-io
reverse_proxy 100.114.112.100:5001
}
handle {
respond 403
@@ -131,7 +136,6 @@ europa.home.ptrwd.com {
# Allow connections only from private ranges and home IP
@allowAccess client_ip 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 162.203.102.154/32
handle @allowAccess {
# reverse_proxy ts-europa.whale-woodpecker.ts.net:5001
reverse_proxy host.docker.internal:5001
}
handle {
@@ -149,7 +153,8 @@ racknerd.home.ptrwd.com {
# Allow connections only from private ranges and home IP
@allowAccess client_ip 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 162.203.102.154/32
handle @allowAccess {
reverse_proxy ts-racknerd.whale-woodpecker.ts.net:5001
# 100.108.70.63 is ts-racknerd
reverse_proxy 100.108.70.63:5001
}
handle {
respond 403