Boosted by baldur@toot.cafe ("Baldur Bjarnason"):
davidgerard@circumstances.run ("David Gerard") wrote:
Rationalwiki.org Status:
Still being hammered into uselessness by AI spammer bots.
I have the newly-released iocaine3 in place, hooked to nginx and it's processing requests!
(e.g. curl https://rationalwiki.org -A Perplexity gives you a remix of a source text)
Unfortunately, the bots are still getting through.
The documentation for iocaine3 appears still to be in a state of flux (i.e., wrong and misleading), so dropping in the very 'l33t NSoE filter will wait on that.
here's the nginx config fragment (send reqs to iocaine, what it lets through goes to varnish):
location / {
proxy_cache off;
proxy_intercept_errors on;
error_page 421 = @fallback;
proxy_pass http://127.0.0.1:42069;
}location @fallback {
proxy_set_header "X-Forwarded-For" $remote_addr;
proxy_set_header Host $host;
proxy_redirect http:// https://;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Port 443;
proxy_pass http://127.0.0.1:6081;proxy_connect_timeout 5s;
proxy_read_timeout 300s;
}