1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00
Mailu/core/nginx/start.py

15 lines
365 B
Python
Raw Normal View History

2017-09-24 14:01:03 +02:00
#!/usr/bin/python
import os
import subprocess
# Check if a stale pid file exists
if os.path.exists("/var/log/nginx.pid"):
os.remove("/var/log/nginx.pid")
2017-09-24 14:01:03 +02:00
2017-12-05 01:21:58 +02:00
if os.environ["TLS_FLAVOR"] in [ "letsencrypt","mail-letsencrypt" ]:
subprocess.Popen(["/letsencrypt.py"])
subprocess.call(["/config.py"])
2017-09-24 14:01:03 +02:00
os.execv("/usr/sbin/nginx", ["nginx", "-g", "daemon off;"])