Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create dnsdist.subdomain.conf.sample #712

Merged
merged 4 commits into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}