Remove legacy short domains
/ terraform (push) Successful in 1m24s Details
/ ansible (push) Successful in 2m47s Details

I never used them, and the certificate renewal didn't work anyway.
This commit is contained in:
Jake Howard 2023-10-02 09:37:05 +01:00
parent 54c88d4253
commit 37b8c48a77
Signed by: jake
GPG Key ID: 57AFB45680EDD477
4 changed files with 1 additions and 39 deletions

View File

@ -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

View File

@ -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"

View File

@ -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

View File

@ -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 = "@"