homelab-nomad/core/blocky/config.yml

117 lines
2.8 KiB
YAML
Raw Normal View History

bootstrapDns:
ips:
- 1.1.1.1
- 1.0.0.1
2022-02-28 20:07:34 +00:00
upstream:
default:
- 1.1.1.1
- 1.0.0.1
quad9:
- 9.9.9.9
- 149.112.112.112
- 2620:fe::fe
- 2620:fe::9
- https://dns.quad9.net/dns-query
2022-06-24 03:11:09 +00:00
- tcp-tls:dns.quad9.net
quad9-unsecured:
- 9.9.9.10
- 149.112.112.10
- 2620:fe::10
- 2620:fe::fe:10
- https://dns10.quad9.net/dns-query
- tcp-tls:dns10.quad9.net
conditional:
fallbackUpstream: false
mapping:
# TODO: Run a simple dns server that this can forward to where it's hosts are set by nomad-services
# consul: {{ env "attr.unique.network.ip-address" }}:8600
home.arpa: 192.168.2.1
in-addr.arpa: 192.168.2.1
iot: 192.168.2.1
local: 192.168.2.1
thefij: 192.168.2.1
.: 192.168.2.1
clientLookup:
upstream: 192.168.2.1
2022-02-28 20:07:34 +00:00
blocking:
blackLists:
ads:
- https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
2022-03-22 03:12:47 +00:00
- http://sysctl.org/cameleon/hosts
- https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt
- https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt
- https://hosts-file.net/ad_servers.txt
smarttv:
- https://perflyst.github.io/PiHoleBlocklist/SmartTV.txt
- https://perflyst.github.io/PiHoleBlocklist/regex.list
malware:
- https://mirror1.malwaredomains.com/files/justdomains
2022-12-22 23:13:31 +00:00
antisocial:
- |
facebook.com
instagram.com
reddit.com
twitter.com
youtube.com
whiteLists:
# Move to Gitea when deployed internally
ads:
{{ with nomadVar "nomad/jobs/blocky" -}}
2022-11-22 22:01:11 +00:00
{{ .whitelists_ads.Value | indent 6 }}
{{- end }}
2022-11-22 22:01:11 +00:00
2022-02-28 20:07:34 +00:00
clientGroupsBlock:
default:
- ads
2022-03-22 03:12:47 +00:00
- malware
- smarttv
2022-12-22 23:13:31 +00:00
192.168.10.232:
- ads
- malware
- antisocial
2022-02-28 20:07:34 +00:00
customDNS:
customTTL: 1h
mapping:
{{ with nomadService "traefik" -}}
{{- $last := len . | subtract 1 -}}
{{- $services := . -}}
{{ with nomadVar "nomad/jobs" }}{{ .base_hostname }}{{ end }}: {{ range $i := loop $last -}}
{{- with index $services $i }}{{ .Address }},{{ end -}}
{{- end -}}
{{- with index . $last }}{{ .Address }}{{ end -}}
{{- end }}
# Other mappings
2022-11-22 22:01:11 +00:00
{{ with nomadVar "nomad/jobs/blocky" }}{{ .mappings.Value | indent 4 }}{{ end }}
2022-02-28 20:07:34 +00:00
prometheus:
enable: true
{{ range nomadService 1 (env "NOMAD_ALLOC_ID") "redis" -}}
redis:
address: 127.0.0.1:6379
# password: ""
# database: 0
connectionAttempts: 10
connectionCooldown: 3s
2022-11-12 00:21:17 +00:00
{{ end -}}
{{ $mysql_addr := "" }}
2023-03-24 05:09:15 +00:00
{{ range nomadService 1 (env "NOMAD_ALLOC_ID") "mysql-server" -}}
{{ $mysql_addr = print .Address ":" .Port }}
2023-03-24 05:09:15 +00:00
{{- end }}
{{ with nomadVar "nomad/jobs/blocky" -}}
2022-11-12 00:21:17 +00:00
queryLog:
type: mysql
target: {{ .db_user }}:{{ .db_pass }}@tcp({{ $mysql_addr }})/{{ .db_name }}?charset=utf8mb4&parseTime=True&loc=Local
2022-11-12 00:21:17 +00:00
logRetentionDays: 14
{{ end -}}
2022-02-28 20:07:34 +00:00
port: 53
httpPort: 4000