Hugo calls these sorts of things “frontends” and has a list here: https://gohugo.io/tools/frontends/
I haven’t had great luck with any of them personally.
DevOps dude, self-hoster, space nerd.
Hugo calls these sorts of things “frontends” and has a list here: https://gohugo.io/tools/frontends/
I haven’t had great luck with any of them personally.
I wouldn’t want to host anything on Windows unless you have to, or you want to learn more about Active Directory / Exchange / etc to help with a day job (assuming your day job is sysadmin / IT). Even then I’d do that inside Windows VMs on a Linux / ESXi host.
I personally wouldn’t (and don’t) host authoritative servers externally to the internet. I do split-horizon DNS, so that my internal BIND server handles my LAN, but I have outside DNS handled by someone that has an ACME (Let’s Encrypt) module, so that I can do wildcart certs.
One thing to look into as you spin up services at home would be some sort of VPN like Tailscale, WireGuard, or even something like Cloudflare Tunnel so that you’re not exposing services directly to the internet if you don’t absolutely have to. I believe some of these projects/products let you specify DNS servers so that when your phone (for example) is connected to the VPN, it uses your home DNS servers instead of public ones.
Your very own self-hosting legend is about to unfold! A world of dreams and adventures with self-hosting awaits!
Yep! Just for whatever the abuse contact was in whois. Could have been coincidence, or maybe just whoever was on shift in Azure town at the time. I don’t remember if I got a response or not from MS.
I’ve actually done this for a Microsoft owned IP before. Someone was Wordpress-scanning a particularly fragile application of one of my clients (which was not Wordpress) which was causing it to fall over. The scan stopped within an hour of sending the abuse email.
Edit to add: I used to work in a NOC for a tier 1 ISP. We had an “abuse department” (a couple people) that investigated these and opened tickets with the NOC. I’ve emailed customers and disconnected circuits as a result of abuse emails, so I wouldn’t say they’re totally useless, but I’m sure it depends on the company involved.
Link thumbnails do get mirrored. My understanding is the front end of Lemmy is pretty heavy for the big instances and the burden of federating to another instance is pretty small. One thing I’ve noticed on my instance is that sometimes inbound federation can be pretty annoyingly slow.
Emby is not open source any more.
It’s free as in “paying zero money”. It’s still distributed via leanpub. Requires an email address to get to the download page, it doesn’t verify it in any way other than being a valid email format. Links are to DRM-free epub and PDF.
Oh nice, that’s better than my solution. Less risky than downgrading.
This is a change with 0.17.4. You cannot have both federation enabled and the private instance box checked. You might try downgrading to the 0.17.3
image (so that you can get into the UI) and unchecking either the private or federation boxes (whichever way you wanna go). I’d also suggest pinning the docker image versions, as I bet you’ve got latest
set (or nothing set, which I believe also grabs latest
), and the vm reboot prompted docker to go grab the latest image on startup. Surprise upgrades probably aren’t what you want.
You should be able to look up the last hop that responds (via ARIN or whoever the internet number agency is in your region) and see who that ISP is. Now the annoying part is some ISPs just drop ICMP at their border so it’s not s smoking gun that they are the issue.
I’ve got two synology NASes. My current backup strategy is to backup everything between the two NASes so I have two copies of everything locally. Then I back up documents, photos, pretty much everything except TV shows and movies to Backblaze.
With that many disks, I’d compare what it would cost to build a desktop PC to hold all the drives, compared to a commercial NAS. When I pulled the trigger on my Synology, the thing that really sold me was the hot-swappable drive bays. I use mine to back VMware storage, so if I had a drive fail, I didn’t want to have to take down all my VMs to offline the storage and swap a disk.
Another thing you might look at is used hard drives. I know you’ve got some, but they’re pretty small, and drives have gotten pretty cheap. NASes with more than 4-5 drive bays get pretty $$$. I just bought an 8TB HGST Ultrastar “refurb” drive for $75. Lots of options, but the bottom line is, I think you’ll love having your own media.
How many drives do you have laying around? Synologys are nice (I have 2) but they’re a little pricey. You could go with one of the plus units and run Plex directly from there.
One of my coworkers got a TerraMaster NAS and installed Xpenology (basically the synology OS) on it. There hardware is a little cheaper.
Couple questions:
I’d start with traceroute and see how far your IPv6 traffic gets before it fails. It could very well be some peering or routing issue between some of the ISPs in between you and wherever that IPv6 address lives. If this ends up identifying where the traffic dies, a lot of the tier 1 ISPs have BGP looking glass servers so you can get an idea of what they know about that subnet.
ESXi is a full OS, not sure if you have the option of swapping out the OS on your server. I’m also not sure it will help in this case.
You are very constrained in what you can do by your networking situation. I think your fundamental problem is that you have a single IP that has to be both the management IP of the server, and also handle all the VM network traffic.
The ideal topology for this would be firewall using the public IP for it’s WAN interface, then your VM host and VMs all on its LAN interface (using DHCP or not). With another IP address, you could run a firewall as a VM.
Any way you slice it, I think you’re either an IP or a networking device short.
I think it’s configurable inside pict-rs’s configuration file. I haven’t messed with it though. I’m also not sure if pict-rs has an API that lemmy can use to configure that.
I believe the activity table in Postgres is retained for 6 months (although I’m purging mine daily) and the pict-rs cache is 168 hours (1 week).
I’d go with something like this Lenovo M900 for $80-$90 used. Sometimes you’ll get lucky and find one with a single 8GB stick, then you can get another for ~$20 and you’ve got a quad core x84-64 machine with 16GB of RAM for right around $100.
The downside would be power consumption compared to a Pi if you’re trying to fit in a severely power-constrained setup, but the M900 will draw around 11-13W idle and 55W under higher load. so it’s not bad my any means.
Oh sure, I totally get it. Once I was fully bought in to k8s and GitOps for one environment, it just made sense to have my other ones use the same tooling.
I’m running the following SQL, although I’m not actually sure it’s as necessary since 0.18.3. It doesn’t delete any post history or anything.
DELETE FROM activity WHERE published < NOW() - INTERVAL '1 day';