You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: APIDOCS.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5178,6 +5178,8 @@ RESPONSE:
5178
5178
"webServiceHttpPort": 5380,
5179
5179
"webServiceEnableHttpUnixSocket": false,
5180
5180
"webServiceHttpUnixSocket": null,
5181
+
"webServiceEnableTlsUnixSocket": false,
5182
+
"webServiceTlsUnixSocket": null,
5181
5183
"webServiceEnableTls": true,
5182
5184
"webServiceEnableHttp3": false,
5183
5185
"webServiceHttpToTlsRedirect": false,
@@ -5202,6 +5204,7 @@ RESPONSE:
5202
5204
"enableDnsOverTcpProxy": false,
5203
5205
"enableDnsOverHttp": false,
5204
5206
"enableDnsOverHttpUnixSocket": false,
5207
+
"enableDnsOverHttpsUnixSocket": false,
5205
5208
"enableDnsOverTls": false,
5206
5209
"enableDnsOverHttps": false,
5207
5210
"enableDnsOverHttp3": false,
@@ -5211,6 +5214,7 @@ RESPONSE:
5211
5214
"dnsOverTcpProxyPort": 538,
5212
5215
"dnsOverHttpPort": 80,
5213
5216
"dnsOverHttpUnixSocket": null,
5217
+
"dnsOverHttpsUnixSocket": null,
5214
5218
"dnsOverTlsPort": 853,
5215
5219
"dnsOverHttpsPort": 443,
5216
5220
"dnsOverQuicPort": 853,
@@ -5349,8 +5353,10 @@ WHERE:
5349
5353
-`maxConcurrentResolutionsPerCore` (optional, cluster parameter): The maximum number of concurrent async outbound resolutions that should be done per CPU core. Initial value is `100`.
5350
5354
-`webServiceLocalAddresses` (optional): Local addresses are the network interface IP addresses you want the web service to listen for requests.
5351
5355
-`webServiceHttpPort` (optional): Specify the TCP port number for the web console and this API web service. Initial value is `5380`.
5352
-
-`webServiceEnableHttpUnixSocket` (optional): Set this to `true` to enable Web Service HTTP over Unix socket.
5353
-
-`webServiceHttpUnixSocket` (optional): Specify the Unix socket file path for Web Service. Ensure that the DNS Server has read+write permissions to the parent directory to be able to create the Unix Socket file.
5356
+
-`webServiceEnableHttpUnixSocket` (optional): Set this to `true` to enable Web Service HTTP over Unix Domain Socket (UDS).
5357
+
-`webServiceHttpUnixSocket` (optional): Specify the Unix Domain Sockets (UDS) file path for HTTP Web Service. Ensure that the DNS Server has read+write permissions to the parent directory to be able to create the UDS file.
5358
+
-`webServiceEnableTlsUnixSocket` (optional): Set this to `true` to enable Web Service HTTPS over Unix Domain Socket (UDS).
5359
+
-`webServiceTlsUnixSocket` (optional): Specify the Unix Domain Sockets (UDS) file path for HTTPS Web Service. Ensure that the DNS Server has read+write permissions to the parent directory to be able to create the UDS file.
5354
5360
-`webServiceEnableTls` (optional): Set this to `true` to start the HTTPS service to access web service.
5355
5361
-`webServiceEnableHttp3` (optional): Set this to `true` to enable HTTP/3 protocol for the web service.
5356
5362
-`webServiceHttpToTlsRedirect` (optional): Set this option to `true` to enable HTTP to HTTPS Redirection.
@@ -5365,15 +5371,17 @@ WHERE:
5365
5371
-`enableDnsOverUdpProxy` (optional): Enable this option to accept DNS-over-UDP-PROXY requests. It implements the [PROXY Protocol](https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt) for both version 1 & 2 over UDP datagram. Configure the `dnsReverseProxyNetworkACL` option to allow only requests coming from your reverse proxy server.
5366
5372
-`enableDnsOverTcpProxy` (optional): Enable this option to accept DNS-over-TCP-PROXY requests. It implements the [PROXY Protocol](https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt) for both version 1 & 2 over TCP connection. Configure the `dnsReverseProxyNetworkACL` option to allow only requests coming from your reverse proxy server.
5367
5373
-`enableDnsOverHttp` (optional): Enable this option to accept DNS-over-HTTP requests. It must be used with a TLS terminating reverse proxy like nginx. Configure the `dnsReverseProxyNetworkACL` option to allow only requests coming from your reverse proxy server. Enabling this option also allows automatic TLS certificate renewal with HTTP challenge (webroot) for DNS-over-HTTPS service.
5368
-
-`enableDnsOverHttpUnixSocket` (optional): Enable this option to accept DNS-over-HTTP requests over Unix socket. It must be used with a TLS terminating reverse proxy like nginx.
5374
+
-`enableDnsOverHttpUnixSocket` (optional): Enable this option to accept DNS-over-HTTP requests over Unix Domain Sockets (UDS).
5375
+
-`enableDnsOverHttpsUnixSocket` (optional): Enable this option to accept DNS-over-HTTPS requests over Unix Domain Sockets (UDS).
5369
5376
-`enableDnsOverTls` (optional): Enable this option to accept DNS-over-TLS requests.
5370
5377
-`enableDnsOverHttps` (optional): Enable this option to accept DNS-over-HTTPS requests.
5371
5378
-`enableDnsOverQuic` (optional): Enable this option to accept DNS-over-QUIC requests.
5372
5379
-`enableDnsOverHttpHelpRedirect` (optional): When this option is enabled, if a user visits the `/dns-query` DNS-over-HTTP(s) URL path using a web browser, the web browser will be redirected to `/` URL path to display the help page for the DNS-over-HTTP(s) service.
5373
5380
-`dnsOverUdpProxyPort` (optional): The UDP port number for DNS-over-UDP-PROXY protocol. Initial value is `538`.
5374
5381
-`dnsOverTcpProxyPort` (optional): The TCP port number for DNS-over-TCP-PROXY protocol. Initial value is `538`.
5375
5382
-`dnsOverHttpPort` (optional): The TCP port number for DNS-over-HTTP protocol. Initial value is `80`.
5376
-
-`dnsOverHttpUnixSocket` (optional): Specify the Unix socket file path for DNS-over-HTTP protocol service. Ensure that the DNS Server has read+write permissions to the parent directory to be able to create the Unix Socket file.
5383
+
-`dnsOverHttpUnixSocket` (optional): Specify the Unix Domain Sockets (UDS) file path for DNS-over-HTTP protocol service. Ensure that the DNS Server has read+write permissions to the parent directory to be able to create the UDS file.
5384
+
-`dnsOverHttpsUnixSocket` (optional): Specify the Unix Domain Sockets (UDS) file path for DNS-over-HTTPS protocol service. Ensure that the DNS Server has read+write permissions to the parent directory to be able to create the UDS file.
5377
5385
-`dnsOverTlsPort` (optional): The TCP port number for DNS-over-TLS protocol. Initial value is `853`.
5378
5386
-`dnsOverHttpsPort` (optional): The TCP port number for DNS-over-HTTPS protocol. Initial value is `443`.
5379
5387
-`dnsOverQuicPort` (optional): The UDP port number for DNS-over-QUIC protocol. Initial value is `853`.
0 commit comments