mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Fix condition for skipping certificate generation in self-signed.py
This commit is contained in:
parent
7d0c638bc9
commit
59fc302b89
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ try:
|
|||
sys_exit(0)
|
||||
|
||||
skipped_servers = []
|
||||
if not getenv("MULTISITE", "no") == "yes":
|
||||
if getenv("MULTISITE", "no") == "no":
|
||||
servers = [servers[0]]
|
||||
if getenv("GENERATE_SELF_SIGNED_SSL", "no") == "no":
|
||||
LOGGER.info("Generate self-signed SSL is not enabled, skipping certificate generation ...")
|
||||
|
|
|
|||
Loading…
Reference in a new issue