Raspberry-Pi-IaC/roles/pi-hole/files/dns_foward.conf
Thomas Kleinendorst f23093d8dc Add UDP forwarding from Nginx
This is working locally, I can resolve addresses. But there still
seems to be another problem in that Windows is timing out when setting
the Pi as the DNS server.
2024-04-15 10:20:02 +02:00

7 lines
121 B
Text

stream {
server {
listen 53 udp;
proxy_pass 127.0.0.1:5053;
proxy_responses 0;
}
}