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
This commit is contained in:
@@ -12,15 +12,32 @@ 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
|
||||
Reference in New Issue
Block a user