Files
homelab/cloudflare/services/services.tf

25 lines
545 B
HCL

locals {
services = {
homer = {
subdomain = "home"
service = "http://192.168.0.101:8888"
policy = "allow_myself_and_family"
},
gitea = {
subdomain = "git"
service = "http://192.168.0.101:3000"
policy = "allow_everyone"
}
miniflux = {
subdomain = "rss"
service = "http://192.168.0.101:8883"
policy = "allow_myself"
}
linkding = {
subdomain = "links"
service = "http://192.168.0.101:9090"
policy = "allow_myself"
}
}
}