etherpad/mumble template fix

This commit is contained in:
muppeth 2023-01-17 22:58:27 +01:00
parent 4afb881e92
commit ee09de8ee7
Signed by: muppeth
GPG Key ID: 0EBC7B9848D04031
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Connection "upgrade";
{% if item.secure_cookie is defined %}
proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";

View File

@ -18,7 +18,7 @@ map $http_upgrade $connection_upgrade {
proxy_pass {{ item.proto }}://{{ item.server }}:{{ item.port }};
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Connection "upgrade";
}
{% endblock %}