this post was submitted on 17 Jun 2023
70 points (96.1% liked)

Selfhosted

39250 readers
371 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Heard about his on the self hosted podcast and just installed it and it works great. Dont use the given compose file just make your own with the linuxserver image. Here's mine and it works over tailscale and through my reverse proxy.

version: "3"
services:
  snapdrop:
    image: "linuxserver/snapdrop"
    
    volumes:
      - /nasdata/docker/volumes/snapdrop/:/data
    
    ports:
      - "8090:80"
      - "4430:443"
  
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 18 points 1 year ago (3 children)

I actually like PairDrop better, as it allows also linking devices that fail to find themselves on the network (for example if you run it behind a reverse proxy). It is obviously pretty similar though.

https://pairdrop.net/

https://github.com/schlagmichdoch/PairDrop

[–] [email protected] 1 points 1 year ago (1 children)

How would one securely host this via reverse proxy so bots don't bring it down?

[–] [email protected] 0 points 1 year ago

I put things behind traefik and authelia if they don't have their own authentication. But anthing that the reverse proxy can offer would work I guess (like BasicAuth middleware on traefik)

load more comments (1 replies)