OpenShift installation

The Next-Gen WAF agent can be deployed on the Red Hat OpenShift Container Platform.

Installation

Installing the Next-Gen WAF module and agent in an OpenShift container is similar to a typical Red Hat installation. However, the primary difference for an OpenShift container installation is all processes must run under a non root account. To meet this requirement, the only extra step is configuring the module and agent to use a socket file that the non root account has read/write access to.

Installing the agent

Follow the Red Hat agent installation instructions.

Configuring the agent

There are three options for configuring the socket file location. Use the option that works best for your container build process. The examples below use a directory that a non root user would have access to. You can specify a different location, but ensure your non root user account has the read/write permissions to that location.

  • You can set the SIGSCI_RPC_ADDRESS environment variable in your Dockerfile:

    ENV SIGSCI_RPC_ADDRESS unix:/tmp/sigsci.sock
  • You can export the SIGSCI_RPC_ADDRESS environment variable in a script when your container starts:

    $ export SIGSCI_RPC_ADDRESS=unix:/tmp/sigsci.sock
  • You can set the rpc-address configuration option in your agent configuration file (by default at /etc/sigsci/agent.conf):

    rpc-address="unix:/tmp/sigsci.sock"

Additional agent configuration options are listed on the agent configuration page.

Installing and configuring the module

Install and configure your module following one of these sets of instructions.

Apache module install

Follow the Apache module installation instructions for Red Hat.

In your Apache configuration file (httpd.conf), add the AgentHost directive after the Next-Gen WAF module is called:

AgentHost "/tmp/sigsci.sock"

NGINX module install

Follow the NGINX module installation instructions for Red Hat.

Update the sigsci.agenthost directive in the module's configuration file located at /opt/sigsci/nginx/sigsci.conf. You will need to remove -- to uncomment the line:

sigsci.agenthost = "unix:/tmp/sigsci.sock"

Example Dockerfile

Below is an example section of a Dockerfile that installs the Next-Gen WAF agent and module (for Apache HTTPD Server) and configures them to use a socket file location accessible to a non root account.

1...
2
3# Add the package repository
4RUN echo "[sigsci_release]" > /etc/yum.repos.d/sigsci.repo && \
5 echo "name=sigsci_release" >> /etc/yum.repos.d/sigsci.repo && \
6 echo "baseurl=https://yum.signalsciences.net/release/el/7/\$basearch" >> /etc/yum.repos.d/sigsci.repo && \
7 echo "repo_gpgcheck=1" >> /etc/yum.repos.d/sigsci.repo && \
8 echo "gpgcheck=0" >> /etc/yum.repos.d/sigsci.repo && \
9 echo "enabled=1" >> /etc/yum.repos.d/sigsci.repo && \
10 echo "gpgkey=https://yum.signalsciences.net/release/gpgkey" >> /etc/yum.repos.d/sigsci.repo && \
11 echo "sslverify=1" >> /etc/yum.repos.d/sigsci.repo && \
12 echo "sslcacert=/etc/pki/tls/certs/ca-bundle.crt" >> /etc/yum.repos.d/sigsci.repo
13
14# Install the Next-Gen WAF agent
15RUN yum -y install sigsci-agent
16
17# Configure the Next-Gen WAF agent
18ENV SIGSCI_RPC_ADDRESS=unix:/tmp/sigsci.sock
19
20# Install the Next-Gen WAF module
21RUN yum install -y sigsci-module-apache
22
23# Configure your web server with the Next-Gen WAF module
24# In this example, we enable the module with Apache
25RUN echo "LoadModule signalsciences_module /etc/httpd/modules/mod_signalsciences.so" >> /etc/httpd/conf/httpd.conf && \
26 echo 'AgentHost "/tmp/sigsci.sock"' >> /etc/httpd/conf/httpd.conf
27
28...
Was this guide helpful?

Do not use this form to send sensitive information. If you need assistance, contact support. This form is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.