Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-12-23 21:25:56 +0000
committerGreg Wilkins2015-12-23 21:42:59 +0000
commit3b49ed6d0a95cb2db2f57932afdba2dc2e292a5e (patch)
treeaf12d08f7c7fe8f7f837f7252e0ae1d61cee7452 /jetty-server/src/main/config/etc/jetty-ssl.xml
parent59680d47d3930a1a0db523d9e27a2374a45903a3 (diff)
downloadorg.eclipse.jetty.project-3b49ed6d0a95cb2db2f57932afdba2dc2e292a5e.tar.gz
org.eclipse.jetty.project-3b49ed6d0a95cb2db2f57932afdba2dc2e292a5e.tar.xz
org.eclipse.jetty.project-3b49ed6d0a95cb2db2f57932afdba2dc2e292a5e.zip
484657 - Support HSTS rfc6797
Diffstat (limited to 'jetty-server/src/main/config/etc/jetty-ssl.xml')
-rw-r--r--jetty-server/src/main/config/etc/jetty-ssl.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/jetty-server/src/main/config/etc/jetty-ssl.xml b/jetty-server/src/main/config/etc/jetty-ssl.xml
index 6bb613e21b..a079c1f6ab 100644
--- a/jetty-server/src/main/config/etc/jetty-ssl.xml
+++ b/jetty-server/src/main/config/etc/jetty-ssl.xml
@@ -47,7 +47,9 @@
<Call name="addCustomizer">
<Arg>
<New class="org.eclipse.jetty.server.SecureRequestCustomizer">
- <Arg type="boolean"><Property name="jetty.ssl.sniHostCheck" default="true"/></Arg>
+ <Arg name="sniHostCheck" type="boolean"><Property name="jetty.ssl.sniHostCheck" default="true"/></Arg>
+ <Arg name="stsMaxAgeSeconds" type="int"><Property name="jetty.ssl.stsMaxAgeSeconds" default="-1"/></Arg>
+ <Arg name="stsIncludeSubdomains" type="boolean"><Property name="jetty.ssl.stsIncludeSubdomains" default="false"/></Arg>
</New>
</Arg>
</Call>

Back to the top