I'm running tomcat (stand alone) on the same machine as apache, but a
different port. I want to use the same https, so it doesn't ask me to
authenticate in my iframe. How to I use the https setting I have in my
Apache server for my tomcat standalone? Do I need to add to my server.xml
in tomcat? Maybe Someone can just point me in the right direction, I'm very
new to https
$VirtualHost{'_default_:443'} = {
SSLEngine => 'on',
SSLCipherSuite =>
'ALL:!ADH:!EXP56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL',
SSLProtocol => 'all -SSLv3',
SSLCertificateFile =>
'/conf/tools/ssl/certs/myserver.net.cert',
SSLCertificateKeyFile =>
'/conf/tools/ssl/private/myserver.net.key',
Redirect => "/index.html ${my_hostname}/home",
Location => {
'/ssl-images' => {
RewriteRule => '/ssl-images(.*) ' .
$base_image_url . '$1 [R,L]',
}
},
Files => {
'~ "\.(cgi|shtml|phtml|php3?)$"' => {
SSLOptions => '+StdEnvVars',
}
},
SetEnvIf => 'User-Agent ".*MSIE.*" nokeepalive
ssl-unclean-shutdown downgrade-1.0 force-response-1.0',
LogLevel => 'warn',
CustomLog => '"logs/ssl_log" combined',
CustomLog => '"logs/ssl_extract_log" clickdata',
SSLLogFile => '"logs/ssl_cipher_log"',
};
This is my TOMCAT
<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
<Connector
port="8099" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="10" debug="0" scheme="https" secure="true">
<Factory
clientAuth="false" protocol="TLS"/>
</Connector>
>> Stay informed about: Apache SSL settings, adding to Tomcat