I don't know if I would be better off starting a new thread or hitchike onto this one? But here goes. I am trying to do a similar configuration but I am using MOD_PROXY_AJP.
Here is my VirtualHost settings:
<VirtualHost *:80>
ServerAdmin webmaster@blahblah.com
DocumentRoot /var/www/html
ServerName igames.blahblah.com
ServerAlias *.blahblah.com
<Location /jforum>
Options All
AuthName "iGames Forum Login"
AuthType Basic
AuthUserFile /var/www/.htpasswd
Require valid-user
</Location>
<Location /igamesWebApp>
Options All
AuthName "igamesWebApp Login"
AuthType Basic
AuthUserFile /var/www/.htpasswd
Require valid-user
</Location>
ProxyPass /jforum ajp://localhost:8009/jforum
ProxyPass /igamesWebApp ajp://localhost:8009/igamesWebApp
ErrorLog logs/igames.blahblah.com-error_log
CustomLog logs/igames.blahblah.com-access_log common
</VirtualHost>
I haven't modified the server.xml file as I wasn't really sure what I needed to modify.
I can connect to jforum just fine. However, I can never successfuly login unless I go to http://igames.blahblah.com:8400/jforum.
any help would be appreciated.
This message was edited 1 time. Last update was at 21/04/2009 14:12:35
|