- Media player. Multiple formats

This commit is contained in:
Ty Clifford
2026-06-03 01:28:23 -04:00
parent 1962390bb8
commit acfb4b3a05
16 changed files with 2346 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Protect the data directory from direct web access
<IfModule mod_rewrite.c>
RewriteEngine On
# Block direct access to data/
RewriteRule ^data/ - [F,L]
</IfModule>
# PHP settings for file uploads
<IfModule mod_php.c>
php_value upload_max_filesize 2048M
php_value post_max_size 2100M
php_value max_execution_time 300
php_value memory_limit 256M
</IfModule>