keycloak-scim/docbook/reference/en/en-US/modules/tomcat-adapter.xml

101 lines
3.8 KiB
XML
Raw Normal View History

2014-10-29 18:48:10 +00:00
<section id="tomcat-adapter">
2014-11-15 16:59:33 +00:00
<title>Tomcat 6, 7 and 8 Adapters</title>
2014-10-29 18:48:10 +00:00
<para>
2014-11-15 16:59:33 +00:00
To be able to secure WAR apps deployed on Tomcat 6, 7 and 8 you must install the Keycloak Tomcat 6, 7 or 8 adapter
2014-10-29 18:48:10 +00:00
into your Tomcat installation. You then have to provide some extra configuration in each WAR you deploy to
Tomcat. Let's go over these steps.
</para>
<section id="tomcat-adapter-installation">
<title>Adapter Installation</title>
2014-12-05 23:30:41 +00:00
<para>
Adapters are no longer included with the appliance or war distribution. Each adapter is a separate download on
the Keycloak download site. They are also available as a maven artifact.
</para>
2014-10-29 18:48:10 +00:00
<para>
2014-12-05 23:30:41 +00:00
You must unzip the adapter distro into Tomcat's <literal>lib/</literal> directory. Including
2014-10-29 18:48:10 +00:00
adapter's jars within your WEB-INF/lib directory will not work! The Keycloak adapter is implemented as a Valve
and valve code must reside in Tomcat's main lib/ directory.
</para>
<para>
<programlisting>
$ cd $TOMCAT_HOME/lib
2014-11-15 16:59:33 +00:00
$ unzip keycloak-tomcat6-adapter-dist.zip
or
2014-10-29 18:48:10 +00:00
$ unzip keycloak-tomcat7-adapter-dist.zip
2014-11-12 23:56:18 +00:00
or
$ unzip keycloak-tomcat8-adapter-dist.zip
2014-10-29 18:48:10 +00:00
</programlisting>
</para>
</section>
<section>
<title>Required Per WAR Configuration</title>
<para>
This section describes how to secure a WAR directly by adding config and editing files within your WAR package.
</para>
<para>
The first thing you must do is create a <literal>META-INF/context.xml</literal> file in your WAR package. This is
a Tomcat specific config file and you must define a Keycloak specific Valve.
</para>
<programlisting>
<![CDATA[
<Context path="/your-context-path">
2014-11-12 23:56:18 +00:00
<Valve className="org.keycloak.adapters.tomcat.KeycloakAuthenticatorValve"/>
2014-10-29 18:48:10 +00:00
</Context>]]>
</programlisting>
<para>
Next you must create
a <literal>keycloak.json</literal> adapter config file within the <literal>WEB-INF</literal> directory
of your WAR. The format of this config file is describe in the <link linkend='adapter-config'>general adapter configuration</link>
section.
</para>
<para>
Finally you must specify both a <literal>login-config</literal> and use standard servlet security to specify
role-base constraints on your URLs. Here's an example:
</para>
<para>
<programlisting>
<![CDATA[
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<module-name>customer-portal</module-name>
<security-constraint>
<web-resource-collection>
<web-resource-name>Customers</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>user</role-name>
</auth-constraint>
</security-constraint>
<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>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>this is ignored currently/realm-name>
</login-config>
<security-role>
<role-name>admin</role-name>
</security-role>
<security-role>
<role-name>user</role-name>
</security-role>
</web-app>
]]>
</programlisting>
</para>
</section>
</section>