mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-07-07 05:21:31 -07:00
Merge pull request #712 from oregonpillow/master
This commit is contained in:
commit
b5be5aa1b1
1 changed files with 22 additions and 0 deletions
22
dnsdist.subdomain.conf.sample
Normal file
22
dnsdist.subdomain.conf.sample
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
## Version 2024/11/26
|
||||||
|
# make sure that your container is named dnsdist
|
||||||
|
# make sure that your dns has a cname set for dnsdist
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue