I have also configured Apache to do basic authentication with a .htpasswd style file.
The web application that I'm using normally runs on Adobe's cold fusion server, but I would like to move it to railo.
The thing that I'm running into is that the application make extensive use of the #REMOTE_USER# variable. As best I can tell, even though I have basic authentication working with apache, it seems like that variable is empty.
Is that normal? Is there something that needs to be configured to have that variable set from the username used for basic authentication?
(If you need more information about my setup, just ask. I'm new enough to this to not know what you need to know :)
tomcatAuthentication="false"
in the Connector part of the server.xml should do it.
This post has some more info on it:
https://stackoverflow.com/questions/13749065/forward-remote-user-to-tomcat-via-ajp-e-g-for-shibboleth
<snip>