keycloak-uncached
Changes
server/src/main/webapp/WEB-INF/web.xml 14(+0 -14)
Details
diff --git a/docbook/reference/en/en-US/modules/server-installation.xml b/docbook/reference/en/en-US/modules/server-installation.xml
index e39fc4d..d0c7b11 100755
--- a/docbook/reference/en/en-US/modules/server-installation.xml
+++ b/docbook/reference/en/en-US/modules/server-installation.xml
@@ -702,27 +702,6 @@ keycloak-war-dist-all-&project.version;/
</section>
- <section>
- <title>Enforce HTTPS For Server Connections</title>
- <para>
- Servlet containers can force browsers and other HTTP clients to use HTTPS. You have to configure this in
- <literal>.../standalone/deployments/auth-server.war/WEB-INF/web.xml</literal>. All you have to do is
- uncomment out the security constraint.
- </para>
- <para>
- <programlisting><![CDATA[<web-app>
- ...
- <security-constraint>
- <web-resource-collection>
- <url-pattern>/*</url-pattern>
- </web-resource-collection>
- <user-data-constraint>
- <transport-guarantee>CONFIDENTIAL</transport-guarantee>
- </user-data-constraint>
- </security-constraint>
-</web-app>]]></programlisting>
- </para>
- </section>
</section>
</section>
server/src/main/webapp/WEB-INF/web.xml 14(+0 -14)
diff --git a/server/src/main/webapp/WEB-INF/web.xml b/server/src/main/webapp/WEB-INF/web.xml
index 7844197..7228afe 100755
--- a/server/src/main/webapp/WEB-INF/web.xml
+++ b/server/src/main/webapp/WEB-INF/web.xml
@@ -49,18 +49,4 @@
<servlet-name>Keycloak REST Interface</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
-
- <!--
-
- <security-constraint>
- <web-resource-collection>
- <url-pattern>/*</url-pattern>
- </web-resource-collection>
- <user-data-constraint>
- <transport-guarantee>CONFIDENTIAL</transport-guarantee>
- </user-data-constraint>
- </security-constraint>
- -->
-
-
</web-app>