the instance is going down for a bit at 8 AM GMT on November 12th to finally put us behind iocaine, which should hopefully reduce or eliminate the amount of 503 errors we’re seeing (since all of them are scrapers pushing over the instance) and expose some metrics for admins trying to keep track of how our instance is performing

I’m also working on a bit of a treat for our regulars who’ve been putting up with the 503s for a while. that will probably be announced a bit after the downtime completes.

  • self@awful.systemsOPM
    link
    fedilink
    English
    arrow-up
    4
    ·
    5 days ago

    ah, 421 is what iocaine returns when the request isn’t garbage but there’s no endpoint to handle it, so I might just need to configure an explicit redirect from www.awful.systems to awful.systems in nginx

    • froztbyte@awful.systems
      link
      fedilink
      English
      arrow-up
      5
      ·
      5 days ago

      a most wonderful stanza:

        server_name ...;
        rewrite  ^ https://$server_name$request_uri? redirect;
      

      not strictly applicable in this case ofc (it specifically is for https upgrade while keeping all other bits), but I just figured I’d put it here so other people can crib it

      (the amount of god-awful regex matching I’ve seen for that before…)