mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-06-28 09:16:55 +00:00
Sync with HTTPS build
This commit is contained in:
parent
7d7e31120e
commit
f425156cad
@ -22,10 +22,10 @@ log_level = "debug"
|
|||||||
capture_output = True
|
capture_output = True
|
||||||
errorlog = f"./log/error_{date}.log"
|
errorlog = f"./log/error_{date}.log"
|
||||||
|
|
||||||
if os.path.exists("./ssl.ini"):
|
if os.path.exists("./ssl-tls.ini"):
|
||||||
sslConfig = configparser.ConfigParser()
|
sslConfig = configparser.ConfigParser()
|
||||||
sslConfig.read_file(open('./ssl.ini', 'r'))
|
sslConfig.read_file(open('./ssl-tls.ini', 'r'))
|
||||||
if sslConfig.has_section('SSL'):
|
if sslConfig.has_section('SSL/TLS'):
|
||||||
cert = sslConfig.get('SSL', 'certificate_path')
|
cert = sslConfig.get('SSL', 'certificate_path')
|
||||||
pem = sslConfig.get('SSL', 'private_key_path')
|
pem = sslConfig.get('SSL', 'private_key_path')
|
||||||
if cert and pem and len(cert) > 0 and len(pem) > 0:
|
if cert and pem and len(cert) > 0 and len(pem) > 0:
|
||||||
|
@ -341,12 +341,12 @@ install_wgd(){
|
|||||||
else
|
else
|
||||||
printf "[WGDashboard] %s Found existing ./db folder\n" "$heavy_checkmark"
|
printf "[WGDashboard] %s Found existing ./db folder\n" "$heavy_checkmark"
|
||||||
fi
|
fi
|
||||||
if [ ! -f "ssl.ini" ]
|
if [ ! -f "ssl-tls.ini" ]
|
||||||
then
|
then
|
||||||
printf "[SSL]\ncertificate_path = \nprivate_key_path = \n" >> ssl.ini
|
printf "[SSL/TLS]\ncertificate_path = \nprivate_key_path = \n" >> ssl-tls.ini
|
||||||
printf "[WGDashboard] %s Created ssl.ini\n" "$heavy_checkmark"
|
printf "[WGDashboard] %s Created ssl-tls.ini\n" "$heavy_checkmark"
|
||||||
else
|
else
|
||||||
printf "[WGDashboard] %s Found existing ssl.ini\n" "$heavy_checkmark"
|
printf "[WGDashboard] %s Found existing ssl-tls.ini\n" "$heavy_checkmark"
|
||||||
fi
|
fi
|
||||||
printf "[WGDashboard] %s WGDashboard installed successfully!\n" "$heavy_checkmark"
|
printf "[WGDashboard] %s WGDashboard installed successfully!\n" "$heavy_checkmark"
|
||||||
printf "[WGDashboard] Enter ./wgd.sh start to start the dashboard\n"
|
printf "[WGDashboard] Enter ./wgd.sh start to start the dashboard\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user