As far as I know, lemmy instances can't sub to kbin magazines yet. I can't on my instance at least
I’ll take that bet. Too bad there’s no RemindMeBot. I would’ve set one for a year
I love how folks on this thread are so sure beehaw’s lying about that - despite the supposed amenable chat they and sh.itjust.works admins had about the situation. You guys are reeeaaally butthurt about the defed even though it wasn’t personal
I bought that on a friend's recommendation a few months ago, but I feel like I didn't give it a fair chance - only played about an hour or two. I'll give it another shot - thanks for the rec
...go on..? And...?
And because this instance had open registration, it quickly became one of the biggest instances. Trolls were using the open registration + federation to harass their community. Because there are a lack of mod tools and the fact they only have 4 mods, they couldn't keep up. In order to keep the community they wanted in tact, they decided to temporarily defederate until they're better equipped to handle it.
So... "fun" fact since I was following that shitshow at the time. When r/T_D got booted off reddit, they congregated to a site called thedonald[dot]win. That site later got renamed to patriots[dot]win. They were very much hyping up Jan6th in the days leading up to it and were absolutely looking forward to getting violent.
I don't think it's an exaggeration to say reddit's tolerance towards T_D was one of the root-causes towards what happened in J6th.
Damn I'm jealous. What I wouldn't give to get mindwiped to experience that again.
lemmy.world's pretty big, but I'm still getting other places. More spread would always be good though. Counts from my all feed -
48 | lemmy.world
14 | beehaw.org
12 | sh.itjust.works
4 | lemmy.dbzer0.com
4 | lemmy.film
The hidden configs are boilerplate which are easily imported for any applicable service. A set-once set of files isn't what I would count towards being verbose. 90% of my services use the exact same format.
If a certain service is complicated and needs more config in nginx, it's going to be the same for caddy.
I'm running a lot of services off my nginx reverse proxy. This is my general setup for each subdomain - each in its own config file. I wouldn't consider this verbose in any way - and it's never crashed on me
service.conf
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name [something].0x-ia.moe;
include /etc/nginx/acl_local.conf;
include /etc/nginx/default_settings.conf;
include /etc/nginx/ssl_0x-ia.conf;
location / {
proxy_pass http://[host]:[port]/;
}
}
They're saying that the issue is fixed in the next release that's coming out (0.18). Right now the stable version everyone's using is (0.17.4)
Interesting - then it's a problem with my thing's config. Thanks for the info - I'll check into it