Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoey2936 committed Oct 30, 2024
2 parents a9b9269 + 25a26d6 commit 2de4d64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 2 additions & 5 deletions backend/templates/_location.conf
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
location {{ path }} {
{{ advanced_config }}

set $forward_path "{{ forward_path }}";
set $forward_scheme {{ forward_scheme }};
set $forward_host "{{ forward_host }}";
set $forward_port {{ forward_port }};
set $forward_path "{{ forward_path }}";

{%- if allow_websocket_upgrade %}
proxy_set_header Upgrade $http_upgrade;
Expand All @@ -16,5 +13,5 @@ location {{ path }} {
if ($forward_path = "") {
rewrite ^{{ path }}(/.*)$ $1 break;
}
proxy_pass $forward_scheme://$forward_host:$forward_port$forward_path;
proxy_pass {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }}{{ forward_path }};
}
6 changes: 6 additions & 0 deletions global/certbot-dns-plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,12 @@
"credentials": "dns_joker_username = <Dynamic DNS Authentication Username>\ndns_joker_password = <Dynamic DNS Authentication Password>\ndns_joker_domain = <Dynamic DNS Domain>",
"full_plugin_name": "dns-joker"
},
"leaseweb": {
"name": "LeaseWeb",
"package_name": "certbot-dns-leaseweb",
"credentials": "dns_leaseweb_api_token = 01234556789",
"full_plugin_name": "dns-leaseweb"
},
"linode": {
"name": "Linode",
"package_name": "certbot-dns-linode",
Expand Down

0 comments on commit 2de4d64

Please sign in to comment.