Recently, my ikoula server had frequent issues, so after careful consideration, I decided to cancel my subscription and purchased a new server from letbox as my storage server + PT box.
However, I needed to transfer the files downloaded through PT back to my local machine, so I thought of creating a private cloud drive on the server. After trying various options, I finally came across Tiny File Manager.
The installation process is quite simple. You just need a web server and PHP environment on your server. Just place tinyfilemanager.php and translation.json in the directory.
For security reasons, I also set up permission restrictions on nginx, allowing only the PHP file to download files from this directory.
location / {
deny all;
}
location /index.php {
allow all;
}