Skip to content

Commit fd82de0

Browse files
committed
change dns api listen port to 8053 which is more like the real dns port
1 parent de87bee commit fd82de0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
depends_on:
2121
- ddns
2222
environment:
23-
PDNS_REMOTE_HTTP_HOST: "ddns:8057"
23+
PDNS_REMOTE_HTTP_HOST: "ddns:8053"
2424

2525
redis:
2626
restart: unless-stopped

shared/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func (c *Config) Initialize() {
2323
flag.StringVar(&c.SOAFqdn, "soa_fqdn", "",
2424
"The FQDN of the DNS server which is returned as a SOA record")
2525

26-
flag.StringVar(&c.ListenBackend, "listen-backend", ":8057",
26+
flag.StringVar(&c.ListenBackend, "listen-backend", ":8053",
2727
"Which socket should the backend web service use to bind itself")
2828

2929
flag.StringVar(&c.ListenFrontend, "listen-frontend", ":8080",

0 commit comments

Comments
 (0)