1
0
mirror of https://github.com/minoplhy/DNSserver.git synced 2025-04-09 05:58:00 +00:00

15 lines
202 B
Plaintext
Raw Normal View History

# DNS (TCP) server
server {
listen 53;
listen [::]:53;
proxy_pass dns;
}
# DNS (UDP) server
server {
listen 53 udp;
listen [::]:53 udp;
proxy_responses 1;
proxy_pass dns;
}