Files
projects/Dockers/iptv-filter/iptv-boxsets.php
T
Bram 0d43176adf
Build and Push Docker Images / build-and-push (push) Successful in 1m50s
ip tv filter
2025-04-16 20:46:48 +02:00

8 lines
278 B
PHP

<?php
exec('/var/www/html/iptv-boxsets.sh > /tmp/iptv-boxsets.m3u');
header("Content-Description: File Transfer");
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"iptv-boxsets.m3u\"");
readfile("/tmp/iptv-boxsets.m3u");
?>