Debian NGINX 1.14.1+
Last updated 2023-03-29
Add the package repositories
Add the version of the Debian package repository that you want to use.
Debian 11 - Bullseye
1$ sudo apt-get update2$ sudo apt-get install -y apt-transport-https wget gnupg3$ wget -qO - https://apt.signalsciences.net/release/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/sigsci.gpg4$ sudo echo "deb [signed-by=/usr/share/keyrings/sigsci.gpg] https://apt.signalsciences.net/release/debian/ bullseye main" | sudo tee /etc/apt/sources.list.d/sigsci-release.list5$ sudo apt-get update
Debian 10 - Buster
1$ sudo apt-get update2$ sudo apt-get install -y apt-transport-https wget gnupg3$ wget -qO - https://apt.signalsciences.net/release/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/sigsci.gpg4$ sudo echo "deb [signed-by=/usr/share/keyrings/sigsci.gpg] https://apt.signalsciences.net/release/debian/ buster main" | sudo tee /etc/apt/sources.list.d/sigsci-release.list5$ sudo apt-get update
Debian 9 - Stretch
1$ sudo apt-get install -y apt-transport-https wget gnupg2$ wget -qO - https://apt.signalsciences.net/release/gpgkey | sudo apt-key add -3$ sudo tee /etc/apt/sources.list.d/sigsci-release.list <<-'EOF'4deb https://apt.signalsciences.net/release/debian/ stretch main5EOF6$ sudo apt-get update
Debian 8 - Jessie
1$ sudo apt-get install -y apt-transport-https wget2$ wget -qO - https://apt.signalsciences.net/release/gpgkey | sudo apt-key add -3$ sudo tee /etc/apt/sources.list.d/sigsci-release.list <<-'EOF'4deb https://apt.signalsciences.net/release/debian/ jessie main5EOF6$ sudo apt-get update
Debian 7 - Wheezy
1$ sudo apt-get install -y apt-transport-https wget2$ wget -qO - https://apt.signalsciences.net/release/gpgkey | sudo apt-key add -3$ sudo tee /etc/apt/sources.list.d/sigsci-release.list <<-'EOF'4deb https://apt.signalsciences.net/release/debian/ wheezy main5EOF6$ sudo apt-get update
Install the module with apt
NOTE
If you are using the backports repository with Debian 9, you will want to install the nginx-module-sigsci-bp-nxo
module.
Install the Signal Sciences NGINX module by running the following command, replacing
NN.NN
with your NGINX version number:$ sudo apt-get install nginx-module-sigsci-nxo=1.NN.NN*In your NGINX config file (located by default at
/etc/nginx/nginx.conf
), add the following lines to the global section after thepid /run/nginx.pid;
line:load_module /etc/nginx/modules/ngx_http_sigsci_module.so;Restart the NGINX service to initialize the new module.
$ sudo service nginx restart
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.