1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-11-23 22:04:47 +02:00

Fix the path of the nginx pid in startup scripts, fixes #483

This commit is contained in:
Pierre Jaury
2018-06-02 10:23:33 +02:00
parent 1b0b3a2b1e
commit 6828231c28
2 changed files with 3 additions and 3 deletions

View File

@@ -42,5 +42,5 @@ if args["TLS"] and not all(os.path.exists(file_path) for file_path in args["TLS"
convert("/conf/tls.conf", "/etc/nginx/tls.conf", args)
convert("/conf/proxy.conf", "/etc/nginx/proxy.conf", args)
convert("/conf/nginx.conf", "/etc/nginx/nginx.conf", args)
if os.path.exists("/var/log/nginx.pid"):
if os.path.exists("/var/run/nginx.pid"):
os.system("nginx -s reload")