Nginx and apache implement reverse proxy 1. before installation, three Supported tools are required: gzip, pcre, and openssl. The dependent gzip module of the openssl module requires the zlib library rewrite module, and the pcre Library ssl function requires the openssl library 2. check whether gzip, pcre, openssl rpm-qa | grep "zlib" rpm-qa | grep "pcre" rpm-qa | grep "openssl" 3 is installed. pre-compiled installation package gzip support, need zlib http://www.zlib.net/download the latest version of the rewrite module requires pcre library http://www.pcre.org/download the latest version of ssl functions need openssl library http://www.openssl.org/=> http://www.openssl.org/source/ LASTEST version can be 4. install nginx tar zxvf nginx.tar.gz. /configure -- with-http_ssl_module Make install5.Nginx and apache implement reverse proxy in the configuration file nginx. set http {include mime. types; default_type application/octet-stream; upstream my_server_pool {server 192.168.10.43: 8088;} server {listen 80; server_name localhost; # location/{# root html; # index index.html index.htm; #}location/{proxy_pass http: // my_server_pool ;}}}