nginx-dns
nginx-dns copied to clipboard
Sample Configuration for DNS over HTTPS (DoH/DoT gateway) and GSLB with NGINX
``` stream { upstream dot { zone dot 64k; server 1.1.1.1:853; } server { listen 853; proxy_ssl on; proxy_pass dot; } } ``` ``` # delv @127.0.0.1 -p 853 +tcp...
Hi, Thank you so much for such a great library. In DNS.J library comments there is this setting (**2**): 0: No decoding, minimal processing required to strip packet from HTTP...
I'm using the provide example file "nginx-doh-and-dot-to-dns.conf" on a vanilla Ubuntu 20.04 server and all DoH request returns something like this: ``` curl -k "https://localhost/dns-query?name=dr.dk&type=A" 502 Bad Gateway 502 Bad...
doh_filter_request function is not working correctly when i pass a dns query over https. it makes the dns_query data to an empty string and passes it to dns upstream server.
edns client subnet shows that the ip is the local 127.0.0.1 address is not the client ip
Hi, do you plan adding DoQ support ?
I am trying to accept dns queries on Nginx listening on UDP port and using nginx as a gateway to get a response from the public dns resolver with TLS...
Hi, I have been browsing around looking for information on how to forward the client ipv4 address to the upstream server in the DoH and DoT configurations. I have stumbled...
The JS stack trace in the error logs is: ``` 2020/08/13 22:11:07 [error] 20905#20905: *3 js exception: TypeError: cannot convert undefined argument to object at Object.entries (native) at JSON.stringify (native)...
The size of DNS queries and their responses are among the most important features that can be used to classify encrypted DNS traffic. To mitigate this, implementing padding is essential...