speff

joined 1 year ago
MODERATOR OF
[–] [email protected] 3 points 1 year ago

Interesting - then it's a problem with my thing's config. Thanks for the info - I'll check into it

[–] [email protected] 3 points 1 year ago (3 children)

As far as I know, lemmy instances can't sub to kbin magazines yet. I can't on my instance at least

[–] [email protected] 9 points 1 year ago (2 children)

I’ll take that bet. Too bad there’s no RemindMeBot. I would’ve set one for a year

[–] [email protected] 12 points 1 year ago* (last edited 1 year ago) (4 children)

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

[–] [email protected] 2 points 1 year ago (1 children)

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

[–] [email protected] 14 points 1 year ago (7 children)

...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.

[–] [email protected] 39 points 1 year ago* (last edited 1 year ago)

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.

[–] [email protected] 2 points 1 year ago (3 children)

Damn I'm jealous. What I wouldn't give to get mindwiped to experience that again.

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago)

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
[–] [email protected] 1 points 1 year ago (1 children)

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.

[–] [email protected] 9 points 1 year ago (3 children)

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]/;
    }
}
[–] [email protected] 15 points 1 year ago

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)

view more: ‹ prev next ›