Move pages hosting to GitLab pages

This commit is contained in:
Jake Howard 2022-10-09 18:26:49 +01:00
parent 491061d900
commit 58730fcbeb
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ http:
rule: Host(`registry.git.theorangeone.net`) rule: Host(`registry.git.theorangeone.net`)
service: service-gitlab service: service-gitlab
router-gitlab-pages: router-gitlab-pages:
rule: HostRegexp(`gitlab-pages.theorangeone.net`, `{subdomain:[a-z]+}.gitlab-pages.theorangeone.net`) rule: HostRegexp(`gitlab-pages.theorangeone.net`, `{subdomain:[a-z]+}.gitlab-pages.theorangeone.net`, `notes.theorangeone.net`)
service: service-gitlab-pages service: service-gitlab-pages
router-slides: router-slides:
rule: Host(`slides.jakehoward.tech`) rule: Host(`slides.jakehoward.tech`)

View file

@ -176,7 +176,7 @@ resource "cloudflare_record" "theorangeonenet_pages" {
resource "cloudflare_record" "theorangeonenet_notes" { resource "cloudflare_record" "theorangeonenet_notes" {
zone_id = cloudflare_zone.theorangeonenet.id zone_id = cloudflare_zone.theorangeonenet.id
name = "notes" name = "notes"
value = cloudflare_record.theorangeonenet_dokku.hostname value = cloudflare_record.theorangeonenet_gitlab_pages.hostname
type = "CNAME" type = "CNAME"
ttl = 1 ttl = 1
} }