Post ATHItCPQXynUti890y by 3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594@mostr.pub
(DIR) More posts by 3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594@mostr.pub
(DIR) Post #ATHItBOKKaK5k0bkf2 by 3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594@mostr.pub
2023-03-04T05:57:24.000Z
0 likes, 0 repeats
Americans, now that lnurl is getting some adoption, if you host your own lnurl server make sure you're blocking Iranian, Cuban, North Korean, Russian, and Syrian IP addresses so that you don't wittingly accept a payment from users in those countries! Not worth jail time or fines.Just got around to setting it up on mine, luckily nginx makes it easy.
(DIR) Post #ATHItBvIM0h7OG2532 by ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc@mostr.pub
2023-03-04T09:20:27.000Z
0 likes, 0 repeats
What exactly is the nginx config that fixes this?
(DIR) Post #ATHItCPQXynUti890y by 3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594@mostr.pub
2023-03-04T16:52:29.000Z
1 likes, 0 repeats
if ($geoip_country_code = "CU") { return 451; }if ($geoip_country_code = "IR") { return 451; }if ($geoip_country_code = "KP") { return 451; }if ($geoip_country_code = "RU") { return 451; }if ($geoip_country_code = "SY") { return 451; }Okay, I know, not perfect, but making a best effort goes a long way.