Skip to content

Commit

Permalink
Merge pull request #712 from oregonpillow/master
Browse files Browse the repository at this point in the history
  • Loading branch information
Roxedus authored Nov 26, 2024
2 parents 278f8ea + a7a607e commit b5be5aa
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions dnsdist.subdomain.conf.sample
Original file line number Diff line number Diff line change
@@ -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;
}
}

0 comments on commit b5be5aa

Please sign in to comment.