Add SSLForceHost support.
This commit is contained in:
parent
dce65ab9c2
commit
b7d20496f3
37 changed files with 389 additions and 40 deletions
|
@ -262,6 +262,7 @@ var _templatesConsul_catalogTmpl = []byte(`[backends]
|
|||
SSLRedirect = {{ $headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $headers.SSLHost }}"
|
||||
SSLForceHost = {{ $headers.SSLForceHost }}
|
||||
STSSeconds = {{ $headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $headers.STSPreload }}
|
||||
|
@ -670,6 +671,7 @@ var _templatesDockerTmpl = []byte(`{{$backendServers := .Servers}}
|
|||
SSLRedirect = {{ $headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $headers.SSLHost }}"
|
||||
SSLForceHost = {{ $headers.SSLForceHost }}
|
||||
STSSeconds = {{ $headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $headers.STSPreload }}
|
||||
|
@ -929,6 +931,7 @@ var _templatesEcsTmpl = []byte(`[backends]
|
|||
SSLRedirect = {{ $headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $headers.SSLHost }}"
|
||||
SSLForceHost = {{ $headers.SSLForceHost }}
|
||||
STSSeconds = {{ $headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $headers.STSPreload }}
|
||||
|
@ -1141,6 +1144,7 @@ var _templatesKubernetesTmpl = []byte(`[backends]
|
|||
SSLRedirect = {{ $frontend.Headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $frontend.Headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $frontend.Headers.SSLHost }}"
|
||||
SSLForceHost = {{ $frontend.Headers.SSLForceHost }}
|
||||
STSSeconds = {{ $frontend.Headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $frontend.Headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $frontend.Headers.STSPreload }}
|
||||
|
@ -1346,6 +1350,7 @@ var _templatesKvTmpl = []byte(`[backends]
|
|||
SSLRedirect = {{ $headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $headers.SSLHost }}"
|
||||
SSLForceHost = {{ $headers.SSLForceHost }}
|
||||
STSSeconds = {{ $headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $headers.STSPreload }}
|
||||
|
@ -1647,6 +1652,7 @@ var _templatesMarathonTmpl = []byte(`{{ $apps := .Applications }}
|
|||
SSLRedirect = {{ $headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $headers.SSLHost }}"
|
||||
SSLForceHost = {{ $headers.SSLForceHost }}
|
||||
STSSeconds = {{ $headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $headers.STSPreload }}
|
||||
|
@ -1892,6 +1898,7 @@ var _templatesMesosTmpl = []byte(`[backends]
|
|||
SSLRedirect = {{ $headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $headers.SSLHost }}"
|
||||
SSLForceHost = {{ $headers.SSLForceHost }}
|
||||
STSSeconds = {{ $headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $headers.STSPreload }}
|
||||
|
@ -2190,6 +2197,7 @@ var _templatesRancherTmpl = []byte(`{{ $backendServers := .Backends }}
|
|||
SSLRedirect = {{ $headers.SSLRedirect }}
|
||||
SSLTemporaryRedirect = {{ $headers.SSLTemporaryRedirect }}
|
||||
SSLHost = "{{ $headers.SSLHost }}"
|
||||
SSLForceHost = {{ $headers.SSLForceHost }}
|
||||
STSSeconds = {{ $headers.STSSeconds }}
|
||||
STSIncludeSubdomains = {{ $headers.STSIncludeSubdomains }}
|
||||
STSPreload = {{ $headers.STSPreload }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue