Hey Nick,
Forgive the newb nature of my post, just want to make sure I understand correctly.
Here is my workers.properties file (/etc/httpd/conf).
Code: Select all
workers.tomcat_home=/opt/tomcat
workers.java_home=$JAVA_HOME
ps=/
worker.list=scalix
worker.scalix.port=8009
worker.scalix.host=localhost
worker.scalix.type=ajp13
worker.scalix.lbfactor=1
And here is my jk.conf (/etc/httpd/conf.d).
Code: Select all
LoadModule jk_module modules/mod_jk.so
<IfModule mod_jk.c>
JkWorkersFile "conf/werkers.properties"
JkLogFile "logs/mod_jk.log"
JkLogLevel "error"
JkShmFile "/etc/httpd/logs/jk.shm"
JkShmSize "10M"
<Location />
AddOutputFilterByType DEFLATE text/xml text/html text/css
AddOutputFilterByType DEFLATE application/x-javascript
</Location>
JkMount /webmail scalix
JkMount /webmail/* scalix
JkMount /sac scalix
JkMount /sac/* scalix
JkMount /caa scalix
JkMount /caa/* scalix
</IfModule>
With the apache rewrite rule, the traffic is SSL'd to apache but not between apache and the JK connector at localhost correct?
Is this a security issue?
Thanks,
John