Sync with HTTPS build

This commit is contained in:
Donald Zou
2024-12-12 18:23:42 +08:00
parent 7d7e31120e
commit f425156cad
2 changed files with 7 additions and 7 deletions

View File

@@ -22,10 +22,10 @@ log_level = "debug"
capture_output = True
errorlog = f"./log/error_{date}.log"
if os.path.exists("./ssl.ini"):
if os.path.exists("./ssl-tls.ini"):
sslConfig = configparser.ConfigParser()
sslConfig.read_file(open('./ssl.ini', 'r'))
if sslConfig.has_section('SSL'):
sslConfig.read_file(open('./ssl-tls.ini', 'r'))
if sslConfig.has_section('SSL/TLS'):
cert = sslConfig.get('SSL', 'certificate_path')
pem = sslConfig.get('SSL', 'private_key_path')
if cert and pem and len(cert) > 0 and len(pem) > 0: