in the nginx override YAML file, change how proxies are specified into a mapping

This commit is contained in:
Joshua Tauberer 2014-08-16 17:43:55 +00:00
parent 04454b35c6
commit f299825a95
1 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,8 @@ def make_domain_config(domain, template, template_for_primaryhost, env):
yaml = rtyaml.load(open(nginx_conf_custom_fn))
if domain in yaml:
yaml = yaml[domain]
if "proxy" in yaml:
nginx_conf += "\tlocation / {\n\t\tproxy_pass %s;\n\t}\n" % yaml["proxy"]
for path, url in yaml.get("proxies", {}).items():
nginx_conf += "\tlocation %s {\n\t\tproxy_pass %s;\n\t}\n" % (path, url)
# Ending.
nginx_conf += nginx_conf_parts[1]