slowmotionrunner

u/slowmotionrunner@lemmy.sdf.org
1 posts · 28 comments

Recent posts

Recent comments

on Netbird The GOAT · c/selfhosted · 6 pts · 142d

If you were using derp servers with Tailscale/Headscale, that would explain why it was slow.

on *Permanently Deleted* · c/technology · -24 pts · 1y

TL;DR: she works on the speech to text AI product on Azure, which is used by Israel for some of their operations.

Look, I understand her desire to stop fighting in Palestine, but by that logic, we should also be protesting every software and computer manufacturer.

on Cooked · c/comicstrips · -7 pts · 1y

By the upvotes it is clear that our readers agree with you, but I’m more than happy to go on record saying your philosophy is empirically invalidated by the fact that you are posting this.

on Protect Trans Kids · c/shirtsthatgohard · -12 pts · 1y

I saw this reply coming… to say that we should protect kids — without explicitly calling out trans kids — does not water down their plight in any way. Please guys, let’s leave that kind of decisiveness to Reddit and focus on where we agree and not where we disagree.

I like iOS shortcuts. This week, I created an iOS shortcut to scan my Plex library. Now this may seem weird since there is an option to scan a library from the official Plex iOS app and there are also options to scan the library automatically or periodically. For various reasons (excuses), I didn't like that the official app only lets you scan one library at a time and I have automatic/periodic scans turned off to avoid network drive access, so I created the shortcut to scan from my phone any time I felt like I wanted to trigger it.

  1. Create a new iOS shortcut
  2. Add the "Get contents of URL" action
  3. Get your X-Plex-Token (see instructions on official website)
  4. Set the URL in your action to: https://{ip_address}:{port}/library/sections/all/refresh?X-Plex-Token={plex_token}

5). Hey OP, don't worry, this can seem kind of scary at first, but it is not that difficult. I've skimmed some of the other comments and there are plenty of good tips here.

2). Yes, you will want your own domain and there is no fear of other people "knowing it" if you have everything set up correctly.

1b). Any cheap VPS will do and you don't need to worry about it being virtualized rather than dedicated. What you really care about is bandwidth speed and limits because a reverse proxy is typically very light on resources. You would be surprised how little CPU/memory it needs.

1a). I use a cheap VPS from RackNerd. Once you have access to your VPS, just install your proxy directly into the OS or in Docker. Whichever is easier. The most important thing for choosing a reverse proxy is automatic TLS/Let's Encrypt. I saw a comment from you about certbot... don't bother with all that nonsense. Either Traefik, Caddy, or Nginx Proxy Manager (not vanilla Nginx) will do all this for you--I personally use Traefik unless for some reason I can't. Way less headaches. The second most important thing to decide is how your VPS in the cloud will connect back to your home securely... I personally use Tailscale for that and it works perfectly fine.

3). Honestly, I think Fail2Ban and geo restrictions are overdoing it. Fail2ban has never gotten me any lift because any sort of modern brute force attack will come from a botnet that has 1000s of unique IPs... never triggering Fail2ban because no repeat offenders. Just ensure your VPS has a firewall enabled and you know what ports you are exposing from Docker and you should be good. If your services don't natively support authentication, look into something like Authelia or Authentik. Rather than Fail2Ban and/or geo restrictions, I would be more inclined to suggest a WAF like Caddy WAF before I reached for geo restrictions. Again, assuming your concern is security, a WAF would do way more for you than IP restrictions which are easily circumvented.

4). Have fun!

EDIT: formatting