2014-06-20 01:16:38 +00:00
|
|
|
# Creates an nginx configuration file so we serve HTTP/HTTPS on all
|
|
|
|
# domains for which a mail account has been set up.
|
|
|
|
########################################################################
|
|
|
|
|
2015-11-29 13:59:22 +00:00
|
|
|
import os.path, re, rtyaml
|
2014-06-20 01:16:38 +00:00
|
|
|
|
|
|
|
from mailconfig import get_mail_domains
|
2015-11-29 13:59:22 +00:00
|
|
|
from dns_update import get_custom_dns_config, get_dns_zones
|
|
|
|
from ssl_certificates import get_ssl_certificates, get_domain_ssl_files, check_certificate
|
2014-06-22 15:34:36 +00:00
|
|
|
from utils import shell, safe_domain_name, sort_domains
|
2014-06-20 01:16:38 +00:00
|
|
|
|
2016-01-02 22:53:47 +00:00
|
|
|
def get_web_domains(env, include_www_redirects=True, exclude_dns_elsewhere=True):
|
2015-11-29 14:43:12 +00:00
|
|
|
# What domains should we serve HTTP(S) for?
|
2014-06-20 01:16:38 +00:00
|
|
|
domains = set()
|
|
|
|
|
2015-11-29 14:43:12 +00:00
|
|
|
# Serve web for all mail domains so that we might at least
|
2015-02-17 00:08:04 +00:00
|
|
|
# provide auto-discover of email settings, and also a static website
|
2015-11-29 14:43:12 +00:00
|
|
|
# if the user wants to make one.
|
|
|
|
domains |= get_mail_domains(env)
|
|
|
|
|
|
|
|
if include_www_redirects:
|
|
|
|
# Add 'www.' subdomains that we want to provide default redirects
|
|
|
|
# to the main domain for. We'll add 'www.' to any DNS zones, i.e.
|
|
|
|
# the topmost of each domain we serve.
|
|
|
|
domains |= set('www.' + zone for zone, zonefile in get_dns_zones(env))
|
|
|
|
|
2016-01-02 22:53:47 +00:00
|
|
|
if exclude_dns_elsewhere:
|
|
|
|
# ...Unless the domain has an A/AAAA record that maps it to a different
|
|
|
|
# IP address than this box. Remove those domains from our list.
|
|
|
|
domains -= get_domains_with_a_records(env)
|
2015-11-29 14:43:12 +00:00
|
|
|
|
|
|
|
# Ensure the PRIMARY_HOSTNAME is in the list so we can serve webmail
|
|
|
|
# as well as Z-Push for Exchange ActiveSync. This can't be removed
|
|
|
|
# by a custom A/AAAA record and is never a 'www.' redirect.
|
|
|
|
domains.add(env['PRIMARY_HOSTNAME'])
|
2014-06-20 01:16:38 +00:00
|
|
|
|
2015-06-04 11:45:08 +00:00
|
|
|
# Sort the list so the nginx conf gets written in a stable order.
|
2014-06-22 15:34:36 +00:00
|
|
|
domains = sort_domains(domains, env)
|
2014-06-20 01:16:38 +00:00
|
|
|
|
|
|
|
return domains
|
2015-06-04 11:38:48 +00:00
|
|
|
|
|
|
|
def get_domains_with_a_records(env):
|
|
|
|
domains = set()
|
|
|
|
dns = get_custom_dns_config(env)
|
|
|
|
for domain, rtype, value in dns:
|
2015-09-05 20:06:30 +00:00
|
|
|
if rtype == "CNAME" or (rtype in ("A", "AAAA") and value not in ("local", env['PUBLIC_IP'])):
|
2015-06-04 11:38:48 +00:00
|
|
|
domains.add(domain)
|
|
|
|
return domains
|
|
|
|
|
2015-06-04 12:32:00 +00:00
|
|
|
def get_web_domains_with_root_overrides(env):
|
|
|
|
# Load custom settings so we can tell what domains have a redirect or proxy set up on '/',
|
|
|
|
# which means static hosting is not happening.
|
|
|
|
root_overrides = { }
|
|
|
|
nginx_conf_custom_fn = os.path.join(env["STORAGE_ROOT"], "www/custom.yaml")
|
|
|
|
if os.path.exists(nginx_conf_custom_fn):
|
|
|
|
custom_settings = rtyaml.load(open(nginx_conf_custom_fn))
|
|
|
|
for domain, settings in custom_settings.items():
|
|
|
|
for type, value in [('redirect', settings.get('redirects', {}).get('/')),
|
|
|
|
('proxy', settings.get('proxies', {}).get('/'))]:
|
|
|
|
if value:
|
|
|
|
root_overrides[domain] = (type, value)
|
|
|
|
return root_overrides
|
|
|
|
|
2015-05-28 18:45:35 +00:00
|
|
|
def do_web_update(env):
|
2015-09-18 13:03:07 +00:00
|
|
|
# Pre-load what SSL certificates we will use for each domain.
|
|
|
|
ssl_certificates = get_ssl_certificates(env)
|
|
|
|
|
2014-06-20 01:16:38 +00:00
|
|
|
# Build an nginx configuration file.
|
2014-08-12 11:00:54 +00:00
|
|
|
nginx_conf = open(os.path.join(os.path.dirname(__file__), "../conf/nginx-top.conf")).read()
|
|
|
|
|
2015-06-04 11:45:08 +00:00
|
|
|
# Load the templates.
|
2015-06-04 12:06:02 +00:00
|
|
|
template0 = open(os.path.join(os.path.dirname(__file__), "../conf/nginx.conf")).read()
|
|
|
|
template1 = open(os.path.join(os.path.dirname(__file__), "../conf/nginx-alldomains.conf")).read()
|
2014-08-16 12:33:10 +00:00
|
|
|
template2 = open(os.path.join(os.path.dirname(__file__), "../conf/nginx-primaryonly.conf")).read()
|
2015-06-17 22:48:15 +00:00
|
|
|
template3 = "\trewrite ^(.*) https://$REDIRECT_DOMAIN$1 permanent;\n"
|
2015-06-04 11:45:08 +00:00
|
|
|
|
|
|
|
# Add the PRIMARY_HOST configuration first so it becomes nginx's default server.
|
2015-09-18 13:03:07 +00:00
|
|
|
nginx_conf += make_domain_config(env['PRIMARY_HOSTNAME'], [template0, template1, template2], ssl_certificates, env)
|
2015-06-04 11:45:08 +00:00
|
|
|
|
|
|
|
# Add configuration all other web domains.
|
2015-06-04 12:32:00 +00:00
|
|
|
has_root_proxy_or_redirect = get_web_domains_with_root_overrides(env)
|
2015-11-29 14:43:12 +00:00
|
|
|
web_domains_not_redirect = get_web_domains(env, include_www_redirects=False)
|
2014-06-20 01:16:38 +00:00
|
|
|
for domain in get_web_domains(env):
|
2015-11-29 14:43:12 +00:00
|
|
|
if domain == env['PRIMARY_HOSTNAME']:
|
|
|
|
# PRIMARY_HOSTNAME is handled above.
|
|
|
|
continue
|
|
|
|
if domain in web_domains_not_redirect:
|
|
|
|
# This is a regular domain.
|
|
|
|
if domain not in has_root_proxy_or_redirect:
|
|
|
|
nginx_conf += make_domain_config(domain, [template0, template1], ssl_certificates, env)
|
|
|
|
else:
|
|
|
|
nginx_conf += make_domain_config(domain, [template0], ssl_certificates, env)
|
2015-06-04 12:32:00 +00:00
|
|
|
else:
|
2015-11-29 14:43:12 +00:00
|
|
|
# Add default 'www.' redirect.
|
|
|
|
nginx_conf += make_domain_config(domain, [template0, template3], ssl_certificates, env)
|
2014-06-20 01:16:38 +00:00
|
|
|
|
2014-07-06 12:16:50 +00:00
|
|
|
# Did the file change? If not, don't bother writing & restarting nginx.
|
|
|
|
nginx_conf_fn = "/etc/nginx/conf.d/local.conf"
|
|
|
|
if os.path.exists(nginx_conf_fn):
|
|
|
|
with open(nginx_conf_fn) as f:
|
|
|
|
if f.read() == nginx_conf:
|
|
|
|
return ""
|
|
|
|
|
2014-06-20 01:16:38 +00:00
|
|
|
# Save the file.
|
2014-07-06 12:16:50 +00:00
|
|
|
with open(nginx_conf_fn, "w") as f:
|
2014-06-20 01:16:38 +00:00
|
|
|
f.write(nginx_conf)
|
|
|
|
|
2014-08-17 22:43:57 +00:00
|
|
|
# Kick nginx. Since this might be called from the web admin
|
|
|
|
# don't do a 'restart'. That would kill the connection before
|
|
|
|
# the API returns its response. A 'reload' should be good
|
|
|
|
# enough and doesn't break any open connections.
|
|
|
|
shell('check_call', ["/usr/sbin/service", "nginx", "reload"])
|
2014-06-20 01:16:38 +00:00
|
|
|
|
2015-05-28 18:45:35 +00:00
|
|
|
return "web updated\n"
|
2014-06-20 01:16:38 +00:00
|
|
|
|
2015-09-18 13:03:07 +00:00
|
|
|
def make_domain_config(domain, templates, ssl_certificates, env):
|
2015-06-04 11:45:08 +00:00
|
|
|
# GET SOME VARIABLES
|
2014-06-20 01:16:38 +00:00
|
|
|
|
2014-06-23 10:53:09 +00:00
|
|
|
# Where will its root directory be for static files?
|
|
|
|
root = get_web_root(domain, env)
|
2014-06-20 01:16:38 +00:00
|
|
|
|
2014-06-22 15:34:36 +00:00
|
|
|
# What private key and SSL certificate will we use for this domain?
|
2015-10-10 22:03:55 +00:00
|
|
|
tls_cert = get_domain_ssl_files(domain, ssl_certificates, env)
|
2014-06-22 15:34:36 +00:00
|
|
|
|
2015-06-04 11:45:08 +00:00
|
|
|
# ADDITIONAL DIRECTIVES.
|
2014-08-16 12:33:10 +00:00
|
|
|
|
2015-06-04 11:45:08 +00:00
|
|
|
nginx_conf_extra = ""
|
2014-07-09 12:31:32 +00:00
|
|
|
|
2014-10-10 15:49:14 +00:00
|
|
|
# Because the certificate may change, we should recognize this so we
|
|
|
|
# can trigger an nginx update.
|
|
|
|
def hashfile(filepath):
|
|
|
|
import hashlib
|
|
|
|
sha1 = hashlib.sha1()
|
|
|
|
f = open(filepath, 'rb')
|
|
|
|
try:
|
|
|
|
sha1.update(f.read())
|
|
|
|
finally:
|
|
|
|
f.close()
|
|
|
|
return sha1.hexdigest()
|
2015-10-10 22:03:55 +00:00
|
|
|
nginx_conf_extra += "# ssl files sha1: %s / %s\n" % (hashfile(tls_cert["private-key"]), hashfile(tls_cert["certificate"]))
|
2014-10-10 15:49:14 +00:00
|
|
|
|
2014-08-24 21:34:15 +00:00
|
|
|
# Add in any user customizations in YAML format.
|
2015-09-08 21:20:13 +00:00
|
|
|
hsts = "yes"
|
2014-07-09 12:31:32 +00:00
|
|
|
nginx_conf_custom_fn = os.path.join(env["STORAGE_ROOT"], "www/custom.yaml")
|
|
|
|
if os.path.exists(nginx_conf_custom_fn):
|
|
|
|
yaml = rtyaml.load(open(nginx_conf_custom_fn))
|
|
|
|
if domain in yaml:
|
|
|
|
yaml = yaml[domain]
|
2015-09-08 21:20:13 +00:00
|
|
|
|
|
|
|
# any proxy or redirect here?
|
2014-08-16 17:43:55 +00:00
|
|
|
for path, url in yaml.get("proxies", {}).items():
|
2015-06-04 11:45:08 +00:00
|
|
|
nginx_conf_extra += "\tlocation %s {\n\t\tproxy_pass %s;\n\t}\n" % (path, url)
|
2014-12-05 16:57:26 +00:00
|
|
|
for path, url in yaml.get("redirects", {}).items():
|
2015-06-04 11:45:08 +00:00
|
|
|
nginx_conf_extra += "\trewrite %s %s permanent;\n" % (path, url)
|
2014-07-09 12:31:32 +00:00
|
|
|
|
2015-09-08 21:20:13 +00:00
|
|
|
# override the HSTS directive type
|
|
|
|
hsts = yaml.get("hsts", hsts)
|
|
|
|
|
|
|
|
# Add the HSTS header.
|
|
|
|
if hsts == "yes":
|
|
|
|
nginx_conf_extra += "add_header Strict-Transport-Security max-age=31536000;\n"
|
|
|
|
elif hsts == "preload":
|
|
|
|
nginx_conf_extra += "add_header Strict-Transport-Security \"max-age=10886400; includeSubDomains; preload\";\n"
|
|
|
|
|
2014-08-26 16:16:20 +00:00
|
|
|
# Add in any user customizations in the includes/ folder.
|
|
|
|
nginx_conf_custom_include = os.path.join(env["STORAGE_ROOT"], "www", safe_domain_name(domain) + ".conf")
|
|
|
|
if os.path.exists(nginx_conf_custom_include):
|
2015-06-04 11:45:08 +00:00
|
|
|
nginx_conf_extra += "\tinclude %s;\n" % (nginx_conf_custom_include)
|
|
|
|
# PUT IT ALL TOGETHER
|
|
|
|
|
|
|
|
# Combine the pieces. Iteratively place each template into the "# ADDITIONAL DIRECTIVES HERE" placeholder
|
|
|
|
# of the previous template.
|
|
|
|
nginx_conf = "# ADDITIONAL DIRECTIVES HERE\n"
|
|
|
|
for t in templates + [nginx_conf_extra]:
|
|
|
|
nginx_conf = re.sub("[ \t]*# ADDITIONAL DIRECTIVES HERE *\n", t, nginx_conf)
|
2014-08-24 21:34:15 +00:00
|
|
|
|
2015-06-04 11:45:08 +00:00
|
|
|
# Replace substitution strings in the template & return.
|
|
|
|
nginx_conf = nginx_conf.replace("$STORAGE_ROOT", env['STORAGE_ROOT'])
|
|
|
|
nginx_conf = nginx_conf.replace("$HOSTNAME", domain)
|
|
|
|
nginx_conf = nginx_conf.replace("$ROOT", root)
|
2015-10-10 22:03:55 +00:00
|
|
|
nginx_conf = nginx_conf.replace("$SSL_KEY", tls_cert["private-key"])
|
|
|
|
nginx_conf = nginx_conf.replace("$SSL_CERTIFICATE", tls_cert["certificate"])
|
2015-06-04 11:45:08 +00:00
|
|
|
nginx_conf = nginx_conf.replace("$REDIRECT_DOMAIN", re.sub(r"^www\.", "", domain)) # for default www redirects to parent domain
|
2014-07-09 12:31:32 +00:00
|
|
|
|
2014-06-22 15:34:36 +00:00
|
|
|
return nginx_conf
|
|
|
|
|
2014-10-07 16:05:38 +00:00
|
|
|
def get_web_root(domain, env, test_exists=True):
|
2014-06-23 10:53:09 +00:00
|
|
|
# Try STORAGE_ROOT/web/domain_name if it exists, but fall back to STORAGE_ROOT/web/default.
|
|
|
|
for test_domain in (domain, 'default'):
|
|
|
|
root = os.path.join(env["STORAGE_ROOT"], "www", safe_domain_name(test_domain))
|
2014-10-07 16:05:38 +00:00
|
|
|
if os.path.exists(root) or not test_exists: break
|
2014-06-23 10:53:09 +00:00
|
|
|
return root
|
|
|
|
|
2014-10-07 16:05:38 +00:00
|
|
|
def get_web_domains_info(env):
|
2015-11-29 14:43:12 +00:00
|
|
|
www_redirects = set(get_web_domains(env)) - set(get_web_domains(env, include_www_redirects=False))
|
|
|
|
has_root_proxy_or_redirect = set(get_web_domains_with_root_overrides(env))
|
2015-10-10 22:03:55 +00:00
|
|
|
ssl_certificates = get_ssl_certificates(env)
|
2015-02-05 13:55:57 +00:00
|
|
|
|
|
|
|
# for the SSL config panel, get cert status
|
2014-10-10 15:49:14 +00:00
|
|
|
def check_cert(domain):
|
2015-10-10 22:03:55 +00:00
|
|
|
tls_cert = get_domain_ssl_files(domain, ssl_certificates, env, allow_missing_cert=True)
|
|
|
|
if tls_cert is None: return ("danger", "No Certificate Installed")
|
|
|
|
cert_status, cert_status_details = check_certificate(domain, tls_cert["certificate"], tls_cert["private-key"])
|
2014-10-10 15:49:14 +00:00
|
|
|
if cert_status == "OK":
|
2015-10-10 22:03:55 +00:00
|
|
|
return ("success", "Signed & valid. " + cert_status_details)
|
2014-10-10 15:49:14 +00:00
|
|
|
elif cert_status == "SELF-SIGNED":
|
|
|
|
return ("warning", "Self-signed. Get a signed certificate to stop warnings.")
|
|
|
|
else:
|
|
|
|
return ("danger", "Certificate has a problem: " + cert_status)
|
|
|
|
|
2014-10-07 16:05:38 +00:00
|
|
|
return [
|
|
|
|
{
|
|
|
|
"domain": domain,
|
|
|
|
"root": get_web_root(domain, env),
|
|
|
|
"custom_root": get_web_root(domain, env, test_exists=False),
|
2014-10-10 15:49:14 +00:00
|
|
|
"ssl_certificate": check_cert(domain),
|
2015-11-29 14:43:12 +00:00
|
|
|
"static_enabled": domain not in (www_redirects | has_root_proxy_or_redirect),
|
2014-10-07 16:05:38 +00:00
|
|
|
}
|
|
|
|
for domain in get_web_domains(env)
|
2016-01-02 22:53:47 +00:00
|
|
|
]
|