Hello looking for a file sharing app, preferable that I can run in a docker container with a UI that displays for file recipients over a reverse proxy.

edit: thanks everyone for your help and suggestions!

  • manned_meatball
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    the other day I spent probably 30 minutes comparing solutions to share files between two machines over the network. I ended up just running this Python line…

    python3 -m http.server 8080

    • testman
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      this is a awesome trick that more people should know about

      there is also solution for the opposite problem, when you have two machines and you have no idea what is in between them:
      https://github.com/magic-wormhole/magic-wormhole
      initiating transfer is as easy as copy-pasting or re-typing a short phrase
      and it will find the best path to transfer files. If they are on same network, it will transfer locally. If they are on the opposite sides of the internet, transfer will go through proxy server, etc.