We have requirement of configuring SSL / TLS for Camunda-BPM on container with Oracle Schema.
I have configured sucessfully Camunda-BPM version: 7.15.6 on VM. I am not able to find any options for container part. Any help on it.
Configuration used:
-------------------------------------------
OS: Ubuntu
Camunda-bpm: 7.15.6-ee with Apache Tomcat
DB: Oracle 19-C
SSL / TLS: Oracle Wallet
SSL configuration on VM
--------------------------------------------------------------
Added the below entry in server.xml file
vi /opt/camunda/server/apache-tomcat-9.0.36/conf/server.xml
<Resource name="jdbc/ProcessEngine" auth="Container" type="javax.sql.DataSource" description="User database that can be updated and saved"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" uniqueResourceName="process-engine"
driverClassName="oracle.jdbc.OracleDriver"
url="jdbc:oracle:thin:@(description=(address=(protocol=tcps)(host=XX.XX.X.XX)(port=XXX))(connect_data=(service_name=XXXXX)))"
username="UID" password="pass" maxTotal="20" minIdle="5" maxIdle="20"
connectionProperties="javax.net.ssl.trustStore=<PATH/ewallet.jks;javax.net.ssl.trustStorePassword=XXXXX;javax.net.ssl.trustStoreType=JKS;" />
Started camunda-bpm services.