update 2025-10-18

Add custom certificate name support
This commit is contained in:
2025-10-18 19:10:36 +03:00
parent 7499e55ce6
commit 94259c5f99
3 changed files with 3 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ def main() -> None:
),
proxy_pass=params.get("proxy_pass"),
certificate_dir=_get_certificate_path(
args.http_only, domains_with_certs, args.certificates_path, server_name
args.http_only, domains_with_certs, args.certificates_path, params.get("certificate_name") or server_name
),
port=params.get("port"),
ssl_port=params.get("ssl_port"),