Skip to content

Commit

Permalink
Prepare Tomcat 10 update
Browse files Browse the repository at this point in the history
  • Loading branch information
strehle committed Aug 9, 2024
1 parent 2fa6c8d commit 890d103
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
12 changes: 7 additions & 5 deletions jobs/uaa/templates/config/tomcat/tomcat.server.xml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,14 @@
clientAuth="false"
sslProtocol="TLS"
keystoreFile="/var/vcap/data/uaa/uaa_keystore.p12"
keystoreType="PKCS12"
keyAlias="uaa_ssl_cert"
keystorePass="k0*l*s3cur1tyr0ck$"
defaultSSLHostConfigName="localhost"
bindOnInit="false"
maxHttpHeaderSize="14336"
/>
maxHttpHeaderSize="14336">
<SSLHostConfig hostName="localhost" protocols="<%= p('uaa.ssl.enabled_protocols') %>">
<Certificate certificateKeystoreFile="/var/vcap/data/uaa/uaa_keystore.p12" certificateKeyAlias="uaa_ssl_cert"
type="RSA" certificateKeystoreType="PKCS12" certificateKeystorePassword="k0*l*s3cur1tyr0ck$"/>
</SSLHostConfig>
</Connector>

<Engine name="Catalina" defaultHost="localhost">

Expand Down
12 changes: 7 additions & 5 deletions spec/compare/all-properties-tomcat-server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@
clientAuth="false"
sslProtocol="TLS"
keystoreFile="/var/vcap/data/uaa/uaa_keystore.p12"
keystoreType="PKCS12"
keyAlias="uaa_ssl_cert"
keystorePass="k0*l*s3cur1tyr0ck$"
defaultSSLHostConfigName="localhost"
bindOnInit="false"
maxHttpHeaderSize="14336"
/>
maxHttpHeaderSize="14336">
<SSLHostConfig hostName="localhost" protocols="TLSv1.2,TLSv1.3">
<Certificate certificateKeystoreFile="/var/vcap/data/uaa/uaa_keystore.p12" certificateKeyAlias="uaa_ssl_cert"
type="RSA" certificateKeystoreType="PKCS12" certificateKeystorePassword="k0*l*s3cur1tyr0ck$"/>
</SSLHostConfig>
</Connector>

<Engine name="Catalina" defaultHost="localhost">
<Host name="localhost"
Expand Down

0 comments on commit 890d103

Please sign in to comment.