# Mirrored manufacturer PDFs. They are meant to be readable; nothing here
# should ever be executed.
#
# No php_flag directive: it returns a 500 under LiteSpeed's LSAPI and under
# suPHP. Denying the extensions outright does the same job everywhere.

<IfModule mod_autoindex.c>
    IndexIgnore *
</IfModule>

<IfModule mod_mime.c>
    AddType application/pdf .pdf
</IfModule>

<FilesMatch "\.(php|phtml|phar|php[0-9]|cgi|pl|py|sh|shtml)$">
    <IfModule mod_authz_core.c>
        Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
        Order allow,deny
        Deny from all
    </IfModule>
</FilesMatch>
