Bladeren bron

Merge pull request #1017 from Stealthii/bugfix/config-application

Apply 'Force SSL' and 'Enable Websockets' to full host definition
jc21 4 jaren geleden
bovenliggende
commit
882ec27969
3 gewijzigde bestanden met toevoegingen van 10 en 9 verwijderingen
  1. 1 1
      backend/templates/dead_host.conf
  2. 8 7
      backend/templates/proxy_host.conf
  3. 1 1
      backend/templates/redirection_host.conf

+ 1 - 1
backend/templates/dead_host.conf

@@ -5,6 +5,7 @@ server {
 {% include "_listen.conf" %}
 {% include "_listen.conf" %}
 {% include "_certificates.conf" %}
 {% include "_certificates.conf" %}
 {% include "_hsts.conf" %}
 {% include "_hsts.conf" %}
+{% include "_forced_ssl.conf" %}
 
 
   access_log /data/logs/dead_host-{{ id }}.log standard;
   access_log /data/logs/dead_host-{{ id }}.log standard;
 
 
@@ -12,7 +13,6 @@ server {
 
 
 {% if use_default_location %}
 {% if use_default_location %}
   location / {
   location / {
-{% include "_forced_ssl.conf" %}
 {% include "_hsts.conf" %}
 {% include "_hsts.conf" %}
     return 404;
     return 404;
   }
   }

+ 8 - 7
backend/templates/proxy_host.conf

@@ -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;
   }
   }

+ 1 - 1
backend/templates/redirection_host.conf

@@ -7,6 +7,7 @@ server {
 {% include "_assets.conf" %}
 {% include "_assets.conf" %}
 {% include "_exploits.conf" %}
 {% include "_exploits.conf" %}
 {% include "_hsts.conf" %}
 {% include "_hsts.conf" %}
+{% include "_forced_ssl.conf" %}
 
 
   access_log /data/logs/redirection_host-{{ id }}.log standard;
   access_log /data/logs/redirection_host-{{ id }}.log standard;
 
 
@@ -14,7 +15,6 @@ server {
 
 
 {% if use_default_location %}
 {% if use_default_location %}
   location / {
   location / {
-{% include "_forced_ssl.conf" %}
 {% include "_hsts.conf" %}
 {% include "_hsts.conf" %}
 
 
     {% if preserve_path == 1 or preserve_path == true %}
     {% if preserve_path == 1 or preserve_path == true %}