mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2026-01-09 06:51:33 +08:00
25 lines
631 B
Plaintext
25 lines
631 B
Plaintext
## Version 2025/07/18
|
|
# make sure that your container is named dnsdist
|
|
# make sure that your dns has a cname set for dnsdist
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
# listen 443 quic;
|
|
listen [::]:443 ssl;
|
|
# listen [::]:443 quic;
|
|
|
|
server_name dnsdist.*;
|
|
|
|
location /dns-query {
|
|
include /config/nginx/proxy.conf;
|
|
include /config/nginx/resolver.conf;
|
|
set $upstream_app dnsdist;
|
|
set $upstream_port 443;
|
|
set $upstream_proto grpc;
|
|
grpc_pass grpcs://$upstream_app:$upstream_port;
|
|
|
|
proxy_set_header Range $http_range;
|
|
proxy_set_header If-Range $http_if_range;
|
|
}
|
|
}
|