- Clone this code to your nginx source code
- run
./configure --add-module=./ngx-firetail-module - do
makeand optionally domake installif you want to install it
Example if you want to enable firetail
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
enable_firetail "apikey" "firetail url";
}
}