Remove legacy short domains
I never used them, and the certificate renewal didn't work anyway.
This commit is contained in:
parent
54c88d4253
commit
37b8c48a77
4 changed files with 1 additions and 39 deletions
|
@ -7,9 +7,6 @@ services:
|
|||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.whoami.rule=Host(`whoami.theorangeone.net`)
|
||||
|
||||
- traefik.http.routers.0rng-whoami.rule=Host(`who.0rng.one`)
|
||||
- traefik.http.routers.0rng-whoami.tls.certresolver=gandi
|
||||
networks:
|
||||
- default
|
||||
- traefik
|
||||
|
|
|
@ -24,8 +24,6 @@ entryPoints:
|
|||
sans: "*.theorangeone.net"
|
||||
- main: jakehoward.tech
|
||||
sans: "*.jakehoward.tech"
|
||||
- main: 0rng.one
|
||||
sans: "*.0rng.one"
|
||||
{% if traefik_provider_dokku %}
|
||||
- main: d.theorangeone.net
|
||||
sans: "*.d.theorangeone.net"
|
||||
|
|
|
@ -26,9 +26,6 @@ services:
|
|||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.img.rule=Host(`img.theorangeone.net`)
|
||||
|
||||
- traefik.http.routers.0rng-img.tls.certresolver=gandi
|
||||
- traefik.http.routers.0rng-img.rule=Host(`img.0rng.one`)
|
||||
networks:
|
||||
- default
|
||||
- traefik
|
||||
|
@ -42,7 +39,7 @@ services:
|
|||
- PUID={{ docker_user.id }}
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.dl.rule=Host(`dl.theorangeone.net`) || Host(`dl.0rng.one`)
|
||||
- traefik.http.routers.dl.rule=Host(`dl.theorangeone.net`)
|
||||
networks:
|
||||
- default
|
||||
- traefik
|
||||
|
|
|
@ -2,36 +2,6 @@ resource "gandi_livedns_domain" "orngone" {
|
|||
name = "0rng.one"
|
||||
}
|
||||
|
||||
resource "gandi_livedns_record" "orngone_git" {
|
||||
zone = gandi_livedns_domain.orngone.id
|
||||
name = "git"
|
||||
type = "CNAME"
|
||||
ttl = 3600
|
||||
values = [
|
||||
"${cloudflare_record.theorangeonenet_git.hostname}."
|
||||
]
|
||||
}
|
||||
|
||||
resource "gandi_livedns_record" "orngone_who" {
|
||||
zone = gandi_livedns_domain.orngone.id
|
||||
name = "who"
|
||||
type = "CNAME"
|
||||
ttl = 3600
|
||||
values = [
|
||||
"${cloudflare_record.theorangeonenet_whoami.hostname}."
|
||||
]
|
||||
}
|
||||
|
||||
resource "gandi_livedns_record" "orngone_img" {
|
||||
zone = gandi_livedns_domain.orngone.id
|
||||
name = "img"
|
||||
type = "CNAME"
|
||||
ttl = 3600
|
||||
values = [
|
||||
"${cloudflare_record.theorangeonenet_img.hostname}."
|
||||
]
|
||||
}
|
||||
|
||||
resource "gandi_livedns_record" "orngone_apex" {
|
||||
zone = gandi_livedns_domain.orngone.id
|
||||
name = "@"
|
||||
|
|
Loading…
Reference in a new issue