# Pass the Authorization header through to PHP (Apache often strips it).
CGIPassAuth On
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1

# Bigger uploads for call recordings (mod_php hosts).
<IfModule mod_php.c>
    php_value upload_max_filesize 32M
    php_value post_max_size 33M
</IfModule>
