# Reenvía Authorization a PHP (algunos hostings lo requieren)
SetEnvIfNoCase Authorization "^(.*)" HTTP_AUTHORIZATION=$1

# Solo permitir POST
RewriteEngine On
RewriteCond %{REQUEST_METHOD} !POST
RewriteRule .* - [R=405,L]

# Restringe acceso solo a tu IP pública
<RequireAll>
  Require all denied
  Require ip 181.49.59.76
</RequireAll>
