[[_fuse7_adapter_classic_war]] ===== Securing a Classic WAR Application The needed steps to secure your WAR application are: . In the `/WEB-INF/web.xml` file, declare the necessary: * security constraints in the element * login configuration in the element. Make sure that the `` is `KEYCLOAK`. * security roles in the element + For example: + [source,xml] ---- customer-portal index.html Customers /customers/* user KEYCLOAK does-not-matter admin user ---- . Within the `/WEB-INF/` directory of your WAR, create a new file, keycloak.json. The format of this configuration file is described in the <<_java_adapter_config,Java Adapters Config>> section. It is also possible to make this file available externally as described in xref:config_external_adapter[Configuring the External Adapter]. + For example: + [source,json] ---- { "realm": "demo", "resource": "customer-portal", "auth-server-url": "http://localhost:8080/auth", "ssl-required" : "external", "credentials": { "secret": "password" } } ---- . Contrary to the Fuse 6 adapter, there are no special OSGi imports needed in MANIFEST.MF. [[_fuse7_config_external_adapter]] ====== Configuring the External Adapter If you do not want the `keycloak.json` adapter configuration file to be bundled inside your WAR application, but instead made available externally and loaded based on naming conventions, use this configuration method. To enable the functionality, add this section to your `/WEB_INF/web.xml` file: [source,xml] ---- keycloak.config.resolver org.keycloak.adapters.osgi.PathBasedKeycloakConfigResolver ---- That component uses `keycloak.config` or `karaf.etc` java properties to search for a base folder to locate the configuration. Then inside one of those folders it searches for a file called `-keycloak.json`. So, for example, if your web application has context `my-portal`, then your adapter configuration is loaded from the `$FUSE_HOME/etc/my-portal-keycloak.json` file.