1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Licensed Materials - Property of IBM IBM Cognos Products: disp (C) Copyright
- IBM Corp. 2013 2016 US Government Users Restricted Rights - Use, duplication
- or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. -->
- <server description="Cognos Analytics ver_11.1.2.0">
- <featureManager>
- <feature>jsp-2.3</feature>
- <feature>localConnector-1.0</feature>
- <feature>servlet-3.1</feature>
- <feature>jaxrs-2.0</feature>
- <feature>cdi-1.2</feature>
- <feature>monitor-1.0</feature>
- <feature>jndi-1.0</feature>
- <feature>ssl-1.0</feature>
- </featureManager>
- <logging consoleLogLevel="ERROR" logDirectory="${install.dir}/logs" messageFileName="p2pd_messages.log"/>
- <application autoStart="true" id="p2pd" location="${install.dir}/webapps/p2pd" name="p2pd" type="war">
- <classloader apiTypeVisibility="spec, ibm-api, third-party" commonLibraryRef="bi-library"/>
- </application>
- <httpEndpoint id="defaultHttpEndpoint" httpPort="9300" host="*">
- <httpOptions CookiesConfigureNoCache="false" AutoDecompression="false" removeServerHeader="true"/>
- </httpEndpoint>
- <config updateTrigger="mbean"/>
- <applicationMonitor dropins="${install.dir}/wlpdropins" updateTrigger="mbean" pollingRate="10s"/>
- <webContainer skipMetaInfResourcesProcessing="true" deferServletLoad="false" com.ibm.ws.webcontainer.servewelcomefilefromextendeddocumentroot="true" invokeFilterInitAtStartup="false" disableXPoweredBy="true" displaytextwhennoerrorpagedefined="error, see logs"/>
- <executor coreThreads="100" maxThreads="1500"/>
- <include location="${install.dir}/configuration/bi-services.xml"/>
- <!-- The setting below will ensure that URL's use the "jar" protocol rather than "wsjar", which is the default in WLP. Some 3rd party libraries rely on this. -->
- <classloading useJarUrls="true"/>
- <cdi12 enableImplicitBeanArchives="false"/>
- <httpEndpoint id="MutualAuthSSLHttpEndpoint" sslOptionsRef="MutualAuthSSL" httpsPort="4300" httpPort="-1" host="*">
- <httpOptions CookiesConfigureNoCache="false" AutoDecompression="false" keepAliveEnabled="false"/>
- <sslOptions sslRef="MutualAuthSSL"/>
- </httpEndpoint>
- <ssl id="MutualAuthSSL" keyStoreRef="CAMEncKeyStore" serverKeyAlias="encryption" enabledCiphers="SSL_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 SSL_ECDHE_RSA_WITH_AES_256_GCM_SHA384 SSL_RSA_WITH_AES_256_GCM_SHA384 SSL_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 SSL_ECDHE_RSA_WITH_AES_128_GCM_SHA256 SSL_RSA_WITH_AES_128_GCM_SHA256 SSL_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 SSL_ECDHE_RSA_WITH_AES_256_CBC_SHA384 SSL_RSA_WITH_AES_256_CBC_SHA256 SSL_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 SSL_ECDHE_RSA_WITH_AES_128_CBC_SHA256 SSL_RSA_WITH_AES_128_CBC_SHA256 SSL_RSA_WITH_AES_128_CBC_SHA" sslProtocol="TLSv1.2" clientAuthentication="true"/>
- <keyStore id="CAMEncKeyStore" password="{aes}ADu4mz1aBtVuPPXURiVRvAgPCIyDxhKC8pEBStnTDucmJoaEB5zIHEEutwxZhdHnLQ==" location="C:/Program Files/ibm/cognos/analytics/configuration/certs/CAMKeystore.jks" pollingRate="60s" updateTrigger="polled"/>
- </server>
|