yum -y install make gcc gcc-c++ openssl openssl-devel pcre-devel zlib-devel
wget -c http://nginx.org/download/nginx-1.14.2.tar.gz
tar zxvf nginx-1.14.2.tar.gz
cd nginx-1.14.2
./configure –prefix=/usr/local/nginx
make && make install
cd /usr/local/nginx
./sbin/nginx
ps aux|grep nginx
Nginx load balancing configuration example
Load balancing is mainly achieved through specialized hardware devices or through software algorithms. The load balancing effect achieved by […]
Recent Comments