Install apache and install/enable mod_jk, mod_ssl, and mod_rewrite (to
force redirect to https). Adjust the following paths as needed for
your installation.
1. Create worker.properties in apache conf dir containing:
worker.list=tomcat6
worker.tomcat6.port=8009
worker.tomcat6.host=localhost
worker.tomcat6.type=ajp13
2. mod_jk config (this is one possible configuration)
<IfModule mod_jk.c>
JkMount /* webpasswordsafe
<Directory "/srv/tomcat6/webpasswordsafe/">
Options Indexes FollowSymLinks
allow from all
</Directory>
# The following line prohibits users from directly accessing WEB-INF
<Location "/WEB-INF/">
#AllowOverride None
Deny from all
</Location>
</IfModule>
3. mod_rewrite config (optional, assumes you've configure ssl)
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [L,R=301]
--
Later,
Darin