Find a file
2025-08-26 18:57:05 +05:00
.gitignore esbuild 2025-08-26 18:57:05 +05:00
index.js esbuild 2025-08-26 18:57:05 +05:00
index.mjs an change 2025-08-26 18:56:15 +05:00
LICENSE add more information 2025-08-22 02:33:32 +05:00
package-lock.json esbuild 2025-08-26 18:57:05 +05:00
package.json esbuild 2025-08-26 18:57:05 +05:00
README.md erm... fix readme 2025-08-25 05:01:40 +05:00

sigmawall

stupid crawler blocker

How 2 use

node .

nginx.conf:

server {
    location / {
        proxy_pass http://127.0.0.1:15345;
        proxy_cache off;
        proxy_intercept_errors on;
        proxy_buffering off;
        error_page 421 = @upstream;
    }
    location @upstream {
        proxy_pass http://127.0.0.1:3874;
    }
}

something like this