mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 18:08:30 -07:00
Update /status to return currently set upstream DNS servers.
This commit is contained in:
parent
da62fac76e
commit
a65a40c6be
@ -193,6 +193,7 @@ func handleStatus(w http.ResponseWriter, r *http.Request) {
|
||||
"dns_address": config.BindHost,
|
||||
"dns_port": config.CoreDNS.Port,
|
||||
"querylog_enabled": config.CoreDNS.QueryLogEnabled,
|
||||
"upstream_dns": config.CoreDNS.UpstreamDNS,
|
||||
}
|
||||
|
||||
json, err := json.Marshal(data)
|
||||
|
10
openapi.yaml
10
openapi.yaml
@ -61,6 +61,16 @@ paths:
|
||||
responses:
|
||||
200:
|
||||
description: OK
|
||||
examples:
|
||||
application/json:
|
||||
dns_address: 127.0.0.1
|
||||
dns_port: 53
|
||||
querylog_enabled: true
|
||||
running: true
|
||||
upstream_dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
version: "v0.1"
|
||||
/querylog:
|
||||
get:
|
||||
tags:
|
||||
|
Loading…
Reference in New Issue
Block a user