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:

View File

@ -341,12 +341,12 @@ install_wgd(){
else
printf "[WGDashboard] %s Found existing ./db folder\n" "$heavy_checkmark"
fi
if [ ! -f "ssl.ini" ]
if [ ! -f "ssl-tls.ini" ]
then
printf "[SSL]\ncertificate_path = \nprivate_key_path = \n" >> ssl.ini
printf "[WGDashboard] %s Created ssl.ini\n" "$heavy_checkmark"
printf "[SSL/TLS]\ncertificate_path = \nprivate_key_path = \n" >> ssl-tls.ini
printf "[WGDashboard] %s Created ssl-tls.ini\n" "$heavy_checkmark"
else
printf "[WGDashboard] %s Found existing ssl.ini\n" "$heavy_checkmark"
printf "[WGDashboard] %s Found existing ssl-tls.ini\n" "$heavy_checkmark"
fi
printf "[WGDashboard] %s WGDashboard installed successfully!\n" "$heavy_checkmark"
printf "[WGDashboard] Enter ./wgd.sh start to start the dashboard\n"