parent
6321ce6ef0
commit
8b9f0489c8
|
@ -166,6 +166,7 @@ def make_domain_config(domain, templates, ssl_certificates, env):
|
||||||
pass_http_host_header = False
|
pass_http_host_header = False
|
||||||
proxy_redirect_off = False
|
proxy_redirect_off = False
|
||||||
frame_options_header_sameorigin = False
|
frame_options_header_sameorigin = False
|
||||||
|
web_sockets = False
|
||||||
m = re.search("#(.*)$", url)
|
m = re.search("#(.*)$", url)
|
||||||
if m:
|
if m:
|
||||||
for flag in m.group(1).split(","):
|
for flag in m.group(1).split(","):
|
||||||
|
@ -175,6 +176,8 @@ def make_domain_config(domain, templates, ssl_certificates, env):
|
||||||
proxy_redirect_off = True
|
proxy_redirect_off = True
|
||||||
elif flag == "frame-options-sameorigin":
|
elif flag == "frame-options-sameorigin":
|
||||||
frame_options_header_sameorigin = True
|
frame_options_header_sameorigin = True
|
||||||
|
elif flag == "web-sockets":
|
||||||
|
web_sockets = True
|
||||||
url = re.sub("#(.*)$", "", url)
|
url = re.sub("#(.*)$", "", url)
|
||||||
|
|
||||||
nginx_conf_extra += "\tlocation %s {" % path
|
nginx_conf_extra += "\tlocation %s {" % path
|
||||||
|
@ -185,6 +188,10 @@ def make_domain_config(domain, templates, ssl_certificates, env):
|
||||||
nginx_conf_extra += "\n\t\tproxy_set_header Host $http_host;"
|
nginx_conf_extra += "\n\t\tproxy_set_header Host $http_host;"
|
||||||
if frame_options_header_sameorigin:
|
if frame_options_header_sameorigin:
|
||||||
nginx_conf_extra += "\n\t\tproxy_set_header X-Frame-Options SAMEORIGIN;"
|
nginx_conf_extra += "\n\t\tproxy_set_header X-Frame-Options SAMEORIGIN;"
|
||||||
|
if web_sockets:
|
||||||
|
nginx_conf_extra += "\n\t\tproxy_http_version 1.1;"
|
||||||
|
nginx_conf_extra += "\n\t\tproxy_set_header Upgrade $http_upgrade;"
|
||||||
|
nginx_conf_extra += "\n\t\tproxy_set_header Connection 'Upgrade';"
|
||||||
nginx_conf_extra += "\n\t\tproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;"
|
nginx_conf_extra += "\n\t\tproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;"
|
||||||
nginx_conf_extra += "\n\t\tproxy_set_header X-Forwarded-Host $http_host;"
|
nginx_conf_extra += "\n\t\tproxy_set_header X-Forwarded-Host $http_host;"
|
||||||
nginx_conf_extra += "\n\t\tproxy_set_header X-Forwarded-Proto $scheme;"
|
nginx_conf_extra += "\n\t\tproxy_set_header X-Forwarded-Proto $scheme;"
|
||||||
|
|
Loading…
Reference in New Issue