mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Fix logic in SSL certificate validation to ensure proper handling of custom SSL options
This commit is contained in:
parent
970a30b65b
commit
3cbab8a660
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ def setup_page():
|
|||
bool(request.form.get("custom_ssl_cert", "")),
|
||||
bool(request.form.get("custom_ssl_key", "")),
|
||||
]
|
||||
) or not all(
|
||||
) and not all(
|
||||
[
|
||||
bool(request.form.get("custom_ssl_cert_data", "")),
|
||||
bool(request.form.get("custom_ssl_key_data", "")),
|
||||
|
|
|
|||
Loading…
Reference in a new issue