Fix synapse-admin URL

It no longer supports being run on a subdirectory with the stock container
This commit is contained in:
Jake Howard
2022-11-07 13:57:14 +00:00
parent b513858893
commit 77e83fec6d
2 changed files with 9 additions and 4 deletions

View File

@ -195,3 +195,10 @@ resource "cloudflare_record" "jakehowardtech_slides" {
type = "CNAME"
ttl = 1
}
resource "cloudflare_record" "jakehowardtech_matrix_admin" {
zone_id = cloudflare_zone.jakehowardtech.id
name = "synapse-admin"
value = linode_instance.casey.ip_address
type = "A"
ttl = 1
}