Why Nostr? What is Njump?
2024-04-23 00:18:12

captjack on Nostr: #tech #tipstr one easiest way to do crude http media server on LAN NAS with #php cd ...

#tech #tipstr one easiest way to do crude http media server on LAN NAS with #php
cd /folder/mediafiles/ (where u have mp4 or jpeg)
nano index.php n paste below - save n exit then run "php -S 10.10.20.10:5000"
<?php
echo "Here are our files";
$path = ".";
$dh = opendir($path);
$i=1;
while (($file = readdir($dh)) !== false) {
if($file != "." && $file != ".." && $file != "index.php" && $file != ".htaccess" && $file != "error_log" && $file != "cgi-bin") {
echo "<a href='$path/$file'>$file</a><br /><br />";
$i++;
}
}
closedir($dh);
?>
Author Public Key
npub1te0uzs6vj29umjaxlqqct82j8q6ppyefrxq06dhr8d6pvwfatgkqjmjgwp