Plaster
New
List
Login
nginx-conf
default
shinmera
2026.04.07 21:06:00
map $http_referer $bad_referer { hostnames; default 0; "~chatgpt.com" 1; "~copilot.com" 1; "~perplexity.ai" 1; "~copilot.microsoft.com" 1; "~claude.ai" 1; "~gemini.google.com" 1; } map $arg_utm_source $bad_utm_source { default 0; "~chatgpt.com" 1; "~copilot.com" 1; }
Raw
Annotate
Repaste
Annotations
nginx-conf
default
shinmera
2026.04.07 21:06:33
default_type text/html; if ($bad_referer) { include /etc/nginx/referrar-block-page.conf; } if ($bad_utm_source) { include /etc/nginx/referrar-block-page.conf; }
Raw
Repaste
nginx-conf
default
shinmera
2026.04.07 21:07:51
.... http { .... include /etc/nginx/referrer-block.conf; }
Raw
Repaste
nginx-conf
default
shinmera
2026.04.07 21:08:29
server { .... include /etc/nginx/common.conf; .... }
Raw
Repaste
nginx-conf
default
shinmera
2026.04.07 21:09:41
return 200 "<!DOCTYPE html><html> <head> <title>Request Interrupted</title> <meta name=\"referrer\" content=\"origin\"> <style>html{text-align:center;font-family:sans-serif;font-size:16pt;}img{max-width:100%;width:800px}</style> </head> <body> <h1>Request Interrupted</h1> <p>Looks like you're using AI shit. Stop giving the ghouls ruining our lives what little power you have.</p> <img alt=\"Girls laughing and pointing at you\" src=\"https://studio.tymoon.eu/api/studio/file?id=3892\"> <p>To load the actual page, try <a href=\"$scheme://$host$request_uri\" rel=\"canonical\">clicking here</a>.</p> <p>If you keep seeing this page, then you should really consider doing some self reflection.</p> <script>url=new URL(window.location.href);url.searchParams.delete(\"utm_source\");document.querySelector(\"a\").setAttribute(\"href\",url.href);</script> </body></html>";
Raw
Repaste