How to dynamically add modules to Nginx

How to dynamically add modules to Nginx

Written in front

Often, after we install Nginx based on the current project situation and business needs, as the business develops, we often add other functional modules to the installed Nginx. When adding function modules to Nginx, Nginx must not be shut down. This involves the question of how to dynamically add modules to the installed Nginx. In this article, we will discuss with you how to dynamically add modules to the installed Nginx.

Dynamically add modules to Nginx

Here we take the installation of the third-party ngx_http_google_filter_module module as an example.

Nginx modules require recompiling Nginx, rather than referencing .so in the configuration file like Apache.

Download the third-party extension module ngx_http_google_filter_module

# cd /data/software/
# git clone https://github.com/cuber/ngx_http_google_filter_module

Check which modules are installed when nginx is compiled and installed

Switch the command line to the directory where the Nginx execution program is located and enter ./nginx -V, as follows:

[root@binghe sbin]# ./nginx -V
nginx version: nginx/1.19.1
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC) 
built with OpenSSL 1.0.2 22 Jan 2015
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx-1.19.1 --with-openssl=/usr/local/src/openssl-1.0.2 --with-pcre=/usr/local/src/pcre-8.37 --with-zlib=/usr/local/src/zlib-1.2.8 --with-http_ssl_module
[root@binghe sbin]#

It can be seen that the parameters used to compile and install Nginx are as follows:

--prefix=/usr/local/nginx-1.19.1 --with-openssl=/usr/local/src/openssl-1.0.2 --with-pcre=/usr/local/src/pcre-8.37 --with-zlib=/usr/local/src/zlib-1.2.8 --with-http_ssl_module

Add the modules that need to be installed and recompile

Add here --add-module=/data/software/ngx_http_google_filter_module

The details are as follows:

./configure --prefix=/usr/local/nginx-1.19.1 --with-openssl=/usr/local/src/openssl-1.0.2 --with-pcre=/usr/local/src/pcre-8.37 --with-zlib=/usr/local/src/zlib-1.2.8 --with-http_ssl_module -–add-module=/data/software/ngx_http_google_filter_module

As above, add all the parameters of Nginx installed previously, and finally add --add-module=/data/software/ngx_http_google_filter_module

After that, we need to compile as follows:

# make //Don't make install, otherwise it will be overwritten

Here, it is important to note that: do not execute the make install command.

Replace nginx binary

# Back up the original nginx execution program# mv /usr/local/nginx-1.19.1/sbin/nginx /usr/local/nginx-1.19.1/sbin/nginx.bak
# Copy the newly compiled nginx executable program to the /usr/local/nginx-1.19.1/sbin/directory# cp /opt/nginx/sbin/nginx /usr/local/nginx-1.19.1/sbin/

Okay, let’s stop here for today! Don’t forget to like, follow and forward so that more people can see it, learn and improve together! !

The above is the detailed content of the method of dynamically adding modules to Nginx. For more information about dynamically adding modules to Nginx, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to recompile Nginx and add modules
  • Nginx dynamically forwards to upstream according to the path in the URL
  • Example of nginx ip blacklist dynamic ban
  • Nginx uses Lua+Redis to dynamically block IP
  • Detailed explanation of several ways to write Nginx dynamic DNS reverse proxy

<<:  How to elegantly implement WeChat authorized login in Vue3 project

>>:  Detailed introduction to Mysql date query

Recommend

Teach you how to achieve vertical centering elegantly (recommended)

Preface There are many ways to center horizontall...

Understanding and application of JavaScript ES6 destructuring operator

Table of contents Preface The role of deconstruct...

Database SQL statement optimization

Why optimize: With the launch of the actual proje...

MySQL table auto-increment id overflow fault review solution

Problem: The overflow of the auto-increment ID in...

React Native environment installation process

react-native installation process 1.npx react-nat...

MySQL intercepts the sql statement of the string function

1. left(name,4) intercepts the 4 characters on th...

Analysis of the differences between Iframe and FRAME

1. Use of Iframe tag <br />When it comes to ...

Getting Started Tutorial for Beginners ④: How to bind subdirectories

To understand what this means, we must first know ...

HTML Basics: HTML Content Details

Let's start with the body: When viewing a web ...

How to use mysqladmin to get the current TPS and QPS of a MySQL instance

mysqladmin is an official mysql client program th...

vue-pdf realizes online file preview

This article example shares the specific code of ...

Detailed introduction to Mysql date query

Query the current date SELECT CURRENT_DATE(); SEL...

Solve the problem that the time zone cannot be set in Linux environment

When changing the time zone under Linux, it is al...

Recommended tips for web front-end engineers

Let's first talk about the value of web front...

Solution to the timeout problem when installing docker-compose with PIP

1: Installation command pip install docker-compos...