I had to set up a a name based virtual host on a server. The JSP-files
of this server should be served by Tomcat, any other file should be
served by Apache. Therefore, I wrote this configuration:

<VirtualHost *:80>

        ServerName domain.be
        ServerAlias www.domain.be
        ServerAdmin [EMAIL PROTECTED]
        DocumentRoot /home/domain.be/public_html
        RewriteEngine on
        RewriteCond %{REQUEST_URI} /(.*)(\.jsp|\.do|j_security_check)$
        RewriteRule ^/(.*) ajp://localhost/$1 [P]

        <Directory /home/domain.be/public_html/WEB-INF/>
           AllowOverride None
           Deny from all
        </Directory>

</VirtualHost>

With this configuration I cannot login to a admin section protected with 
j_security_check. When I log in, I'm redirected to 
http://www.theserverside.com/discussions/thread.tss?thread_id=32033 I was 
wondering if this is actually the good way to set up things?
If I point my browser to http://www.domain.be/j_security_check, then I receive 
a login page. Does anyone know what problem occurs here?

Kind regards,
Pieter Bolle


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to