Hello, I've configured Tomcat (apache-tomcat-5.5.26) to run behind Apache Http (v.2.2.3 ) using mod_jk.
We have 2 of those Tomcat servers running on different machines. We also configured load balancer (CISCO CSM) which we want to use for SSL offloading and LB. Load balancer serves https requests and forwards them to http (on the above servers). The problem is that links given by apache - the generated html pages (by Sakai app.) appeared to include http://.... And this is a major problem since we can't even serve forms from https URL's (the URL of the page is https://..... but links inside the HTML page itself are from http://.... format) I've been thinking to try to resolve this with ProxyHTMLURLMAp (mod_proxy_html) but I have no experience with this module. Can someone give me a sample syntax that I can try to include in my vhost configuration? Below is my virt. host configuration: NameVirtualHost *:80 <VirtualHost *:80> ServerName servername.com ServerAdmin leo...@servername.com ServerAlias sakai-server # if not specified, the global error log is used ErrorLog /var/log/httpd/servername.com-error_log CustomLog /var/log/httpd/servername.com-access_log combined HostnameLookups Off UseCanonicalName Off # Add index.jsp to DirectoryIndex files DirectoryIndex index.php index.html index.htm index.shtml index.php4 index.php3 index.phtml index.cgi index.jsp JkMount /* worker1 Best Regards, -- Leon Kolchinsky