this post was submitted on 17 Jun 2023
66 points (98.5% liked)

Selfhosted

39250 readers
257 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
[–] raphael@lemmy.mira.pm 17 points 1 year ago (2 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

[–] death916@lemmy.death916.xyz 3 points 1 year ago

Just looked at that and might have to try that. had a couple issues with devcvices finding eachother at first, but a reboot of thee container fixed it. Might be handy for sending my gf something when out and about.

I just heard about this on the podcast and wanted to try it but pairdrop may be better. Thanks

[–] MisterB@feddit.uk 1 points 1 year ago (1 children)

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

[–] raphael@lemmy.mira.pm 1 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)