You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
717 B
Python
25 lines
717 B
Python
7 years ago
|
#!/usr/bin/python
|
||
|
|
||
|
import jinja2
|
||
|
import os
|
||
|
|
||
|
convert = lambda src, dst, args: open(dst, "w").write(jinja2.Template(open(src).read()).render(**args))
|
||
|
|
||
|
args = os.environ.copy()
|
||
|
|
||
|
args["TLS"] = {
|
||
|
"cert": ("/certs/cert.pem", "/certs/key.pem"),
|
||
|
"letsencrypt": ("/certs/letsencrypt/live/mailu/fullchain.pem",
|
||
|
"/certs/letsencrypt/live/mailu/privkey.pem"),
|
||
|
"notls": None
|
||
|
}[args["TLS_FLAVOR"]]
|
||
|
|
||
|
if args["TLS"] and not all(os.path.exists(file_path) for file_path in args["TLS"]):
|
||
|
print("Missing cert or key file, disabling TLS")
|
||
|
args["TLS_ERROR"] = "yes"
|
||
|
|
||
|
|
||
7 years ago
|
convert("/conf/tls.conf", "/etc/nginx/tls.conf", args)
|
||
7 years ago
|
convert("/conf/nginx.conf", "/etc/nginx/nginx.conf", args)
|
||
|
os.system("nginx -s reload")
|