30 lines
675 B
HCL
30 lines
675 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 = "news"
|
|
service = "http://192.168.0.101:8883"
|
|
policy = "allow_myself"
|
|
}
|
|
linkding = {
|
|
subdomain = "links"
|
|
service = "http://192.168.0.101:9090"
|
|
policy = "allow_myself"
|
|
}
|
|
grafana = {
|
|
subdomain = "grafana"
|
|
service = "http://192.168.0.101:3333"
|
|
policy = "allow_myself"
|
|
}
|
|
}
|
|
}
|