From 6a5f073fb361b2ea6f13a900f80a8fef615005c8 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Tue, 26 Dec 2023 21:36:51 +0100 Subject: [PATCH] trying with a new different port --- conf/AdGuardHome.yaml | 2 +- conf/nginx.conf | 2 +- manifest.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/AdGuardHome.yaml b/conf/AdGuardHome.yaml index 5ec1cd2..8ef33aa 100644 --- a/conf/AdGuardHome.yaml +++ b/conf/AdGuardHome.yaml @@ -75,7 +75,7 @@ tls: enabled: __DNS_OVER_HTTPS__ server_name: "__DOMAIN__" force_https: false - port_https: __PORT__ + port_https: __PORT_INTERNAL_HTTPS__ port_dns_over_tls: __PORT_DNS_OVER_HTTP__ port_dns_over_quic: __PORT_DNS_OVER_QUIC__ port_dnscrypt: 0 diff --git a/conf/nginx.conf b/conf/nginx.conf index c07fbf2..03a8ef7 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -27,7 +27,7 @@ location /dns-query { proxy_http_version 1.1; proxy_read_timeout 6s; proxy_connect_timeout 6s; - proxy_pass http://127.0.0.1:__PORT__/dns-query; + proxy_pass http://127.0.0.1:__PORT_INTERNAL_HTTPS__/dns-query; } # disabling the API point of the built-in updater (which can break the installation) diff --git a/manifest.toml b/manifest.toml index b62a6d1..d08f098 100644 --- a/manifest.toml +++ b/manifest.toml @@ -71,7 +71,7 @@ dns_over_http.default = 853 dns_over_http.exposed = "Both" dns_over_quic.default = 784 dns_over_quic.exposed = "UDP" -main.default = 13120 +internal_https.default = 13120 [resources.system_user]