Nginx Reverse Proxy

Reverse Proxy The difference between a reverse proxy and a forward proxy is that the forward proxy proxies the client; the reverse proxy proxies the server. In reverse proxy, the client is unaware of the proxy because the client does not need any configuration to access, we only need to Read more…

Nginx Installation

Official website: http://nginx.org/ Click Download. Choose version campatible with your system. In this article, my system is Linux. Nginx is written in C language. So make sure you have C language environment first. yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel Unzip the software package. tar -zxvf nginx-1.10.0.tar.gz Read more…