mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-25 02:47:04 +00:00
Merge pull request #162 from skosch/patch-2
Replace spaces by tabs in 106-109. See 92c7815d2c
.
This commit is contained in:
commit
43fe2fe282
@ -103,10 +103,10 @@ def make_domain_config(domain, template, template_for_primaryhost, env):
|
|||||||
for path, url in yaml.get("proxies", {}).items():
|
for path, url in yaml.get("proxies", {}).items():
|
||||||
nginx_conf += "\tlocation %s {\n\t\tproxy_pass %s;\n\t}\n" % (path, url)
|
nginx_conf += "\tlocation %s {\n\t\tproxy_pass %s;\n\t}\n" % (path, url)
|
||||||
|
|
||||||
# Add in any user customizations in the includes/ folder.
|
# 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")
|
nginx_conf_custom_include = os.path.join(env["STORAGE_ROOT"], "www", safe_domain_name(domain) + ".conf")
|
||||||
if os.path.exists(nginx_conf_custom_include):
|
if os.path.exists(nginx_conf_custom_include):
|
||||||
nginx_conf += "\tinclude %s;\n" % (nginx_conf_custom_include)
|
nginx_conf += "\tinclude %s;\n" % (nginx_conf_custom_include)
|
||||||
|
|
||||||
# Ending.
|
# Ending.
|
||||||
nginx_conf += nginx_conf_parts[1]
|
nginx_conf += nginx_conf_parts[1]
|
||||||
|
Loading…
Reference in New Issue
Block a user