this post was submitted on 13 Jun 2024
84 points (95.7% liked)

Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ

52547 readers
641 users here now

⚓ Dedicated to the discussion of digital piracy, including ethical problems and legal advancements.

Rules • Full Version

1. Posts must be related to the discussion of digital piracy

2. Don't request invites, trade, sell, or self-promote

3. Don't request or link to specific pirated titles, including DMs

4. Don't submit low-quality posts, be entitled, or harass others



Loot, Pillage, & Plunder


💰 Please help cover server costs.

Ko-FiLiberapay


founded 1 year ago
MODERATORS
 

Hello,

I'm trying to send something to my gf's friend (~50gb)

I tried creating my own torrent and was able to dl it on another device, but on her machine it stayed at 0% and wouldn't let me connect to seed

Is FTP a good option? I set up a proxmox server last night but I don't really know what I'm doing yet

Any guidance greatly appreciated, thanks.

you are viewing a single comment's thread
view the rest of the comments
[–] user224@lemmy.sdf.org 7 points 2 weeks ago

My lazy way is NGINX with autoindex.

If it's to go over untrusted network (e.g.: internet, school network) I use SSH for port forwarding. Lazy encryption.

Something like this works just fine:

worker_processes 1;
daemon off;
events {
}
http {
        default_type application/octet-stream;
        server {
                root /storage/emulated/0/sharedfile;
                listen 127.0.0.1:30000;
                location / {
                      autoindex on;
                }
        }

}

sharedfile is a directory with the files.
On remote machine if I am not mistaken

ssh -L 127.0.0.1:8080:127.0.0.1:30000 username@host

Then just access it in web browser on 127.0.0.1:8080 or whatever port you chose.
In PuTTY you can find this under "Tunnels".

Of course, you need to have SSH server set up as well.