45 lines
1.1 KiB
HCL
45 lines
1.1 KiB
HCL
locals {
|
|
services = {
|
|
homer = {
|
|
subdomain = "home"
|
|
service = "http://192.168.0.101:8888"
|
|
policy = "allow_myself_and_family"
|
|
}
|
|
homeassistant = {
|
|
subdomain = "ha"
|
|
service = "http://192.168.0.101:8123"
|
|
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:9999"
|
|
policy = "allow_myself"
|
|
}
|
|
grafana = {
|
|
subdomain = "grafana"
|
|
service = "http://192.168.0.101:3333"
|
|
policy = "allow_myself"
|
|
}
|
|
syncthing = {
|
|
subdomain = "sync"
|
|
service = "http://192.168.0.101:8384"
|
|
policy = "allow_myself"
|
|
}
|
|
brad-trost = {
|
|
subdomain = "brad-trost"
|
|
service = "http://192.168.0.101:6666"
|
|
policy = "allow_everyone"
|
|
}
|
|
}
|
|
}
|