# Allow serving video files
Options -Indexes

<FilesMatch "\.(php|php3|php4|php5|phtml|pl|py|cgi|sh)$">
  Order allow,deny
  Deny from all
</FilesMatch>

# Allow video files
<FilesMatch "\.(mp4|webm|mov|avi|mkv|flv|ts|ogg)$">
  Order allow,deny
  Allow from all
</FilesMatch>
