-
-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #712 from oregonpillow/master
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |