|
@@ -11,6 +11,14 @@ server {
|
|
|
{% include "_assets.conf" %}
|
|
{% include "_assets.conf" %}
|
|
|
{% include "_exploits.conf" %}
|
|
{% include "_exploits.conf" %}
|
|
|
{% include "_hsts.conf" %}
|
|
{% include "_hsts.conf" %}
|
|
|
|
|
+{% include "_forced_ssl.conf" %}
|
|
|
|
|
+
|
|
|
|
|
+{% if allow_websocket_upgrade == 1 or allow_websocket_upgrade == true %}
|
|
|
|
|
+proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
+proxy_set_header Connection $http_connection;
|
|
|
|
|
+proxy_http_version 1.1;
|
|
|
|
|
+{% endif %}
|
|
|
|
|
+
|
|
|
|
|
|
|
|
access_log /data/logs/proxy_host-{{ id }}.log proxy;
|
|
access_log /data/logs/proxy_host-{{ id }}.log proxy;
|
|
|
|
|
|
|
@@ -43,15 +51,8 @@ server {
|
|
|
|
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
|
|
|
|
-{% include "_forced_ssl.conf" %}
|
|
|
|
|
{% include "_hsts.conf" %}
|
|
{% include "_hsts.conf" %}
|
|
|
|
|
|
|
|
- {% if allow_websocket_upgrade == 1 or allow_websocket_upgrade == true %}
|
|
|
|
|
- proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
- proxy_set_header Connection $http_connection;
|
|
|
|
|
- proxy_http_version 1.1;
|
|
|
|
|
- {% endif %}
|
|
|
|
|
-
|
|
|
|
|
# Proxy!
|
|
# Proxy!
|
|
|
include conf.d/include/proxy.conf;
|
|
include conf.d/include/proxy.conf;
|
|
|
}
|
|
}
|