# ─── WEBHOOKS .HTACCESS ───
# Allow POST requests to webhook endpoints
<FilesMatch "\.(php)$">
    <IfModule mod_rewrite.c>
        RewriteEngine Off
    </IfModule>
</FilesMatch>

# Disable directory listing
Options -Indexes

# Allow all IPs for webhooks
Order Allow,Deny
Allow from all