ip tv filter
Build and Push Docker Images / build-and-push (push) Successful in 1m50s

This commit is contained in:
2025-04-16 20:46:48 +02:00
parent 9919a690d1
commit 0d43176adf
8 changed files with 93 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
exec('/var/www/html/iptv-tv.sh > /tmp/iptv-tv.m3u');
header("Content-Description: File Transfer");
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"iptv-tv.m3u\"");
readfile("/tmp/iptv-tv.m3u");
?>