I am trying to use my Apache server on another box to proxy Scalix web access on my scalix server. I currently have Apache set up to proxy and in fact am doing it for another site I host.
I have Apache Configured in the following way:
<VirtualHost *:80>
ServerName server.com
ServerAlias thedomainiwant.com
ProxyPass / http://localscalixserver:8080/webmail/
ProxyPassReverse / http://localscalixserver:8080/webmail/
</VirtualHost>
Finally,I have Tomcat setup as such:
<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="8080"
proxyName="thedomainiwant.com"
proxyPort="80"/>
When I access my site I get the Scalix login but I get errors like this:
Object Expected
Object doesnt support this property or method
I have read up on what to do with Tomcat so it will serve out correctly through an Apache proxy but no luck.
I have changed the conf and xml files so much I probably created a small error that is screwing me up but... can someone please help?
Is there anyone out there proxying through Apache to their SWA?
Thanks