change dns api listen port to 8053 which is more like the real dns port
This commit is contained in:
parent
de87bee048
commit
fd82de0eae
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- ddns
|
- ddns
|
||||||
environment:
|
environment:
|
||||||
PDNS_REMOTE_HTTP_HOST: "ddns:8057"
|
PDNS_REMOTE_HTTP_HOST: "ddns:8053"
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
|
@ -23,7 +23,7 @@ func (c *Config) Initialize() {
|
||||||
flag.StringVar(&c.SOAFqdn, "soa_fqdn", "",
|
flag.StringVar(&c.SOAFqdn, "soa_fqdn", "",
|
||||||
"The FQDN of the DNS server which is returned as a SOA record")
|
"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")
|
"Which socket should the backend web service use to bind itself")
|
||||||
|
|
||||||
flag.StringVar(&c.ListenFrontend, "listen-frontend", ":8080",
|
flag.StringVar(&c.ListenFrontend, "listen-frontend", ":8080",
|
||||||
|
|
Loading…
Reference in a new issue