Files
Hassio_Addons/technitium_dns/config.yaml
Ken Schiano a36ffe0b68 feat: add DNS-over-TLS (853), DNS-over-HTTPS (443), HTTPS web console (53443)
- config.yaml: add ports for DoT, DoH (tcp+udp), HTTPS console with descriptions
- add TLS cert options schema (enable_https, pfx path/password) mapped to HA ssl dir
- Dockerfile: set HTTPS env defaults, fix symlink to -sf
- README: document DoT/DoH setup using HA ACME certs via openssl pfx export
- bump version to 1.1.0
2026-08-07 23:06:14 -04:00

43 lines
955 B
YAML

name: Technitium DNS
version: 15.4.1
slug: technitium_dns
description: Technitium DNS Server add-on for Home Assistant
arch:
- amd64
- aarch64
- armv7
init: false
url: https://github.com/technitiumsoftware/dnsserver
webui: http://[HOST]:[PORT:5380]/
ports:
53/udp: 53
53/tcp: 53
853/tcp: 853
443/tcp: 443
443/udp: 443
5380/tcp: 5380
53443/tcp: 53443
ports_description:
53/udp: DNS service (UDP)
53/tcp: DNS service (TCP)
853/tcp: DNS-over-TLS (DoT)
443/tcp: DNS-over-HTTPS (DoH, HTTP/1.1 + HTTP/2)
443/udp: DNS-over-HTTPS (DoH, HTTP/3)
5380/tcp: Web console (HTTP)
53443/tcp: Web console (HTTPS)
map:
- addon_config:rw
- ssl
options:
admin_password: CHANGE_ME
timezone: UTC
enable_https: false
tls_cert_pfx_path: null
tls_cert_pfx_password: null
schema:
admin_password: password
timezone: str
enable_https: bool
tls_cert_pfx_path: str?
tls_cert_pfx_password: password?
image: technitium/dns-server