mirror of
				https://github.com/optim-enterprises-bv/Mailu-OIDC.git
				synced 2025-10-31 18:18:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			365 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			365 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/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")
 | |
| 
 | |
| if os.environ["TLS_FLAVOR"] in [ "letsencrypt","mail-letsencrypt" ]:
 | |
|     subprocess.Popen(["/letsencrypt.py"])
 | |
| 
 | |
| subprocess.call(["/config.py"])
 | |
| os.execv("/usr/sbin/nginx", ["nginx", "-g", "daemon off;"])
 | 
