I want to allow paypal to send ipn on my pre-production site, which is password protected with Apaches Basic Auth method.
The following configuration doesn't work
AuthType Basic
AuthName "Access restricted"
AuthUserFile .my-htpasswd
Require user my-user
Order deny,allow
Deny from all
Allow from *.paypal.com
Satisfy any
Does someone know how to solve this?