I am using a 3rd party to handle authentication for me (
http://www.janrain.com/) but the problem is I need to lock down my development environment. I added some basic Apache mod_auth to my vhost but now my authentication is failing. I believe it is because the 3rd party sends post request which is not making it due to the HTTP authentication occurring ... ? Can anyone help me (or tell me) how to allow the POST request from the 3rd party to bypass the authentication? I am using Rails if that helps.
Apache VHost Configuration
Code:
<Directory /srv/www/dev/current/public>
AuthType Basic
AuthUserFile /srv/auth/.htpasswd
AuthName "Please Authenticate ..."
Require valid-user
</Directory>