death916

joined 2 years ago
MODERATOR OF
[–] death916@lemmy.death916.xyz 3 points 3 weeks ago

Spent way too much time building castles on this as a kid

[–] death916@lemmy.death916.xyz 3 points 1 month ago (1 children)

Lighthouse with Dafoe maybe

[–] death916@lemmy.death916.xyz 1 points 1 month ago (1 children)

The tailnet domain doesn't really matter that much if you have your own. I just use tailscale IP for everything that's not in adgaurs with a host name already

[–] death916@lemmy.death916.xyz 6 points 1 month ago

Never seen a red factuality score for a site.

[–] death916@lemmy.death916.xyz 9 points 1 month ago (1 children)

It's that almost every time for me at least on insider build I click update and shutdown. Wake up in morning and PC is on lock screen not shutdown

 

Cross-posted from "The great cat escape of 2025" by @death916@lemmy.death916.xyz in !general@lemmy.death916.xyz


Escape starts at 60 seconds. Came home in the morning and he's waiting by the door for food. https://streamable.com/bprcih

 

Escape starts at 60 seconds. Came home in the morning and he's waiting by the door for food.

[–] death916@lemmy.death916.xyz 2 points 2 months ago

Didn't know about that one I kind of hate novellas because they always end when I get into them but might have to check that out. Thanks

[–] death916@lemmy.death916.xyz 3 points 2 months ago* (last edited 2 months ago)

At my job if we put encrypt in an email message the server encrypts it before sending maybe he thought it was like that

[–] death916@lemmy.death916.xyz 4 points 2 months ago (2 children)

Really liked that one and hope a sequel comes soon

[–] death916@lemmy.death916.xyz 3 points 2 months ago* (last edited 2 months ago)

Finished shroud by Adrian tchavosky and it was kind of slow but I ended up wishing for a sequel.

Now almost done listening to Eversion by Alistair Reynolds and it's a wild ride

[–] death916@lemmy.death916.xyz 1 points 2 months ago

Plex actively removes features though that hasn't happened and like other comments says it's easy to move away in this case

[–] death916@lemmy.death916.xyz 1 points 2 months ago

Libera chat is very busy still

[–] death916@lemmy.death916.xyz 2 points 2 months ago (1 children)

Windows Insider branch and a copilot pc

 

Sac As winning a game jsu to go on a losing streak again.

 

Also lost a bunch of old posts during server move but all user profiles and likes are still saved.

 
 
 

cross-posted from: https://lemmy.death916.xyz/post/9829

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"
  
 

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"
  
 

Since I had a hard time, and ive seen a few people still having issues. None of the posts exactly helped with my setupI decided to post my current docker-compose lemmy conf and explain a few things.

Some steps are skipped such

Also the docker-compose in the docs wouldnt federate properly until i explicitly added ports to the compose.

FIRST STEPS

First off im running lemmy on oracle free tier arm instance with 4 cores 24 gb of ram. This vps is not accessible from the internet. ON another free box I run nginx Proxy Manager which connects to any vm on my home or other networks I want accessible.

I connect to the proxy box by using tailscale but any vpn should work

DOCKER INSTALL

So here is the compose file. the lemmy external host is the IP address of the proxy box. I used the tailscale ip . If you are not using an arm box remove the arm tag for the image.

https://gist.github.com/Death916/77c8d2c0d0cb62019a5aba71f8292166

now here is the lemmy.hconf that should be in same dierectory as compose file. Edit with the same db as in the compose.

https://gist.github.com/Death916/161928397f100f4bebac66cb909e6d99

Proxy setup

Make an entry for your server. i used the tailscale ip with the port in the compose 1236.. Now you need to add this to the advanced tab.

https://gist.github.com/Death916/6edcca3ec6c3df9df7301256963bade1

This nginx.conf is default from the lemmy project used for the webserver and also needs to be in same directory as the compose.

https://gist.github.com/Death916/0da841d45923cded1e479427f1cde6e8

You also need some custom locations in proxy manager. A new entry for each of these.

Location = /api

IP = internal IP of your server host

port = 8536 (lemmy port, not the lemmy-ui port)

Repeat the above for each of the others with locations as:

/pictrs

/feeds

/nodeinfo

With this setup only the box with nginx proxy manager is actually accessible while lemmy runs on a different one that is closed. The only thing different from the setup in the docs is ports listed for everything so they can communicate with nginx over tailscale.

view more: next ›