💾 Archived View for gemini.rmf-dev.com › repo › Vaati › powShield › readme captured on 2023-09-28 at 16:15:47. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-05-24)
-=-=-=-=-=-=-
Proof of work NGINX module
git clone https://gmi.rmf-dev.com/Vaati/powShield
A nginx module to add a proof-of-work challenge before accessing a page.
To build this module you will need to download nginx source code first.
Clone Pow Shield repository outside of the nginx source folder.
In the nginx source code directory uses the command :
./auto/configure --add-dynamic-module=[absolute path to PoW-Shield repo]
This will build PoW Shield as a dynamically loadable module.
If you want to build the module for a pre-compiled nginx server, you will need
to get the source code of the same version as the pre-built nginx.
You will also need to compile it with the same flags. To see with which flags
a nginx binary was built with, use the command 'nginx -V'.
In your nginx configuration file, add 'powshield "on";' to a server or a location.
The protection can also be disabled for specific URLs with 'powshield "off";'
If the module was built as a dynamic module, you will need to add at the top of
your nginx configuration file the following line :
load_module "/path/to/ngx_http_powshield_module.so";