问题:升级到 Apache 2.4.4 和 Tomcat 7.0.33。通过 HTTPS 访问网站会产生“找不到对象”错误。错误日志显示没有错误(apche、tomcat 或 Windows)。服务器操作系统:Windows 2008 Apache:版本 2.4.4 Tomcat:版本 7.033 JRE:版本 1.6.0_43
httpd.conf
LoadModule jk_module modules/mod_jk.so
# mod_jk setup
<IfModule mod_jk.c>
JkWorkersFile conf/workers.properties
JkLogFile "|bin/rotatelogs.exe logs/mod_jk.log.%Y-%m-%d.txt 86400"
JkLogLevel error
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T"
# Should mod_jk send SSL information to Tomcat (default is On)
JkExtractSSL On
# What is the indicator for SSL (default is HTTPS)
JkHTTPSIndicator HTTPS
# What is the indicator for SSL session (default is SSL_SESSION_ID)
JkSESSIONIndicator SSL_SESSION_ID
# What is the indicator for client SSL cipher suit (default is SSL_CIPHER)
JkCIPHERIndicator SSL_CIPHER
# What is the indicator for the client SSL certificated (default is SSL_CLIENT_CERT)
JkCERTSIndicator SSL_CLIENT_CERT
<Directory "N:/Prod/WebApp_Tomcat/">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<Location /*/WEB-INF/*>
deny from all
</Location>
JkMount /WebApp/* presentation
</IfModule>
# end of mod_jk setup