Merge remote-tracking branch 'upstream/develop' into develop
This commit is contained in:
commit
2de4d646f3
2 changed files with 8 additions and 5 deletions
|
@ -2,9 +2,6 @@ location {{ path }} {
|
|||
{{ advanced_config }}
|
||||
|
||||
set $forward_path "{{ forward_path }}";
|
||||
set $forward_scheme {{ forward_scheme }};
|
||||
set $forward_host "{{ forward_host }}";
|
||||
set $forward_port {{ forward_port }};
|
||||
|
||||
{%- if allow_websocket_upgrade %}
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
|
@ -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 }};
|
||||
}
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue