Don't overwrite

This commit is contained in:
David Duque 2020-04-20 19:20:26 +01:00
parent 5f15c2e53b
commit c401625a01
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
1 changed files with 2 additions and 3 deletions

View File

@ -98,9 +98,8 @@ def do_web_update(env):
if os.path.exists(nginx_conf_custom):
with open(nginx_conf_custom, "r") as f:
local_conf = f.read()
if domain not in has_root_proxy_or_redirect:
local_conf = make_domain_config(domain, [template0, template4], ssl_certificates, env)
elif domain not in has_root_proxy_or_redirect:
local_conf = make_domain_config(domain, [template0, template3], ssl_certificates, env)
else:
local_conf = make_domain_config(domain, [template0], ssl_certificates, env)
nginx_conf += local_conf