About the Kong plugin
The Kong plugin is a feature of the NGINX module, which allows it to function as a Kong plugin. Accordingly, the process for installing the Kong plugin involves installing the Signal Sciences agent and NGINX module, and modifying the NGINX module configuration to enable it for use with Kong.
Installation
-
Install the Signal Sciences agent for your environment.
-
Edit the agent configuration file located at
/etc/sigsci/agent.conf
to add the following lines. Replace<AGENT-LISTENER-IP>
with the host IP address (usually127.0.0.1
) and<AGENT-LISTENER-PORT>
with the TCP port on which the agent will listen for connections from the module. There is no default, but we suggest port737
to minimize the chance of conflicts with other services:rpc-address=<AGENT-LISTENER-IP>:<AGENT-LISTENER-PORT>
-
Download and extract the latest Signal Sciences NGINX module.
curl -O https://dl.signalsciences.net/sigsci-module-nginx/sigsci-module-nginx_latest.tar.gz sudo mkdir -p /opt/sigsci/nginx sudo tar -xf sigsci-module-nginx_latest.tar.gz -C /opt/sigsci/nginx
-
If you are on Kong 3.0.x, override the
handler.lua
andschema.lua
files in/opt/sigsci/nginx/sigsci-module-nginx/kong/plugins/signalsciences
with thehandler.lua
andschema.lua
files in/opt/sigsci/sigsci-module-nginx/nginx/kong/plugins/signalsciences-3.0.x
. -
Edit the following lines in
/opt/sigsci/nginx/sigsci-module-nginx/kong/plugins/signalsciences/handler.lua
to reflect the host IP address and the port used for communication with the agent. Replace"localhost"
and12345
with the host IP address and port:sigsci.agenthost = "localhost" sigsci.agentport = 12345
-
In the Kong configuration file at
/etc/kong/kong.conf
, add the following lines:plugins=signalsciences lua_package_path=/opt/sigsci/nginx/sigsci-module-nginx/?.lua
-
Enable the Kong plugin by running the following command. Replace
<KONG-GATEWAY-IP:PORT>
with the Kong IP address and port (for example,127.0.0.1:1234
):curl -i -X POST --url http://<KONG-GATEWAY-IP:PORT>/plugins/ --data 'name=signalsciences'