Steps for configuring Nginx static/Dynamic Splitting and nginx static/Dynamic Splitting
Step 1
Many Errors During Nginx installation on Linux
./When configure & make install, the following error is reported:
This error is reported./configure: error: the HTTP rewrite module requires the PCRE library.
Install pcre-devel to solve the problem
Yum-y install pcre-devel
This error is reported./configure: error: the HTTP cache module requires md5 functions
From OpenSSL library. You can either disable the module by using
-Without-http-cache option, or install the OpenSSL library into the system,
Or build the OpenSSL library statically from the source with nginx by using
-With-http_ssl_module-with-openssl = options.
Install yum-y install openssl-devel
You also need to install gcc openssl zlib pcre
Pcre: used for address rewriting.
Zlib: gzip module of nginx, which package transmission data and saves traffic (but consumes resources ).
Openssl: provides ssl encryption protocol
Start as follows
Successful!