I want to use 'Limit' to allow GETs and POSTs, to a page requiring authentication, from only certain sites. I want authentication for GETs and POSTs from a certain IP, who should be able to access without authenticating.
<Limit GET POST> allow from allowableSite.com </Limit> This doesn't work. Everything is unauthorized
<Limit GET POST> allow from all </Limit> This doesn't work either. Everything is still unauthorized (401)
The only thing that gets past the authentication is this
<Limit GET POST> satisfy any </Limit> Then, any GET or POST will be successful... But this is not what I want since I only want access to be available from a certain site. And 'allow' is not working as expected. Could something be configured somewhere else that is causing this behaviour? Any help is much appreciated.