Nginx commonly used function modules under summary

nginx-1.10.3]# ./configure  \

 --prefix = / usr / local / Nginx   \        # specify the installation path

 --user = nginx --group = nginx \ # specify the user name and group

 --with-http_ssl_module # ssl encryption turned on website

 --with-http_auth_basic_module # user authentication websites

 --with-http_charset_module # custom site encoding, such as UTF-8

 --with-http_fastcgi_module # forwards the request to the PHP service

 --with-http_gzip_module # achieve data compression site

 --with-http_log_module # logging requested by the user

 --with-http_rewrite_module # address rewrite module

 --with-http_stub_status_module # show service status of Nginx

 --with-http_upstream_module # define layer 7 proxy cluster server group

 --with-http_stream_core_module # 4 define server groups clustered level scheduling

End.

Guess you like

Origin www.cnblogs.com/liusingbon/p/11221403.html