Hello,
Java: 1.6
Tomcat: 6
Httpd: 2.2
I have developed a java/flex application hosted on tomcat/httpd. I want to prevent users from accessing this site via http, but I can't get my rediect working.
<VirtualHost _default_:443>
# General setup for the virtual host
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
ServerName sean.home:443
...
</VirtualHost>
This hasn't had the desired affect, and so I have a few questions.
Starting with the obvious, have I done this correctly?
Also, I have added some extra configuration so that my flex app loads and works correctly and I'm wondering if this has affected my redirect. The additional configuration includes:
VirtualHost _default_:443 configuration contains these lines:
httpd-jk.conf file which includes:
JkWorkersFile conf/workers.properties
JkMountFile conf/uriworkermap.properties
JkLogLevel debug
Any help at all appreciated.
Regards,
Sean
And