# Uploaded files are DATA. Nothing in this tree may ever be executed.
# Written automatically by api/src/Media/Uploader.php, do not remove.

<IfModule mod_php.c>
    php_flag engine off
</IfModule>
<IfModule mod_php7.c>
    php_flag engine off
</IfModule>
<IfModule mod_php5.c>
    php_flag engine off
</IfModule>

RemoveHandler .php .phtml .php3 .php4 .php5 .php7 .php8 .phps .pht .shtml .cgi .pl .py
RemoveType .php .phtml .php3 .php4 .php5 .php7 .php8 .phps .pht .shtml

SetHandler default-handler

<FilesMatch "\.(php|phtml|php3|php4|php5|php7|php8|phps|pht|shtml|cgi|pl|py|htaccess)$">
    SetHandler default-handler
    ForceType text/plain
    <IfModule mod_authz_core.c>
        Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
        Order allow,deny
        Deny from all
    </IfModule>
</FilesMatch>

Options -ExecCGI -Indexes