change dns api listen port to 8053 which is more like the real dns port

This commit is contained in:
Philipp Böhm 2018-01-27 21:03:46 +01:00
parent de87bee048
commit fd82de0eae
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ services:
depends_on:
- ddns
environment:
PDNS_REMOTE_HTTP_HOST: "ddns:8057"
PDNS_REMOTE_HTTP_HOST: "ddns:8053"
redis:
restart: unless-stopped

View File

@ -23,7 +23,7 @@ func (c *Config) Initialize() {
flag.StringVar(&c.SOAFqdn, "soa_fqdn", "",
"The FQDN of the DNS server which is returned as a SOA record")
flag.StringVar(&c.ListenBackend, "listen-backend", ":8057",
flag.StringVar(&c.ListenBackend, "listen-backend", ":8053",
"Which socket should the backend web service use to bind itself")
flag.StringVar(&c.ListenFrontend, "listen-frontend", ":8080",