feat: add prowlarr.voidstash.xyz DNS + tunnel rule
This commit is contained in:
@@ -110,6 +110,14 @@ resource "cloudflare_tunnel_config" "legion" {
|
||||
}
|
||||
}
|
||||
|
||||
ingress_rule {
|
||||
hostname = "prowlarr.voidstash.xyz"
|
||||
service = "https://traefik.kube-system.svc:443"
|
||||
origin_request {
|
||||
no_tls_verify = true
|
||||
}
|
||||
}
|
||||
|
||||
# Catch-all — must be last
|
||||
ingress_rule {
|
||||
service = "http_status:404"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# voidstash.xyz — private media stack (Stash + Whisparr)
|
||||
# voidstash.xyz — private media stack (Stash + Whisparr + Prowlarr)
|
||||
# Zone created via API: ba74d72edbea8023ff4ed6cb27487154
|
||||
# Nameservers delegated to Cloudflare from Porkbun
|
||||
|
||||
@@ -22,3 +22,11 @@ resource "cloudflare_record" "whisparr" {
|
||||
content = "${var.cloudflare_tunnel_id}.cfargotunnel.com"
|
||||
proxied = true
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "prowlarr_voidstash" {
|
||||
zone_id = data.cloudflare_zone.voidstash.id
|
||||
name = "prowlarr"
|
||||
type = "CNAME"
|
||||
content = "${var.cloudflare_tunnel_id}.cfargotunnel.com"
|
||||
proxied = true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user