資源描述:
《nginx 反向代理、負載均衡、頁面緩存、url重寫及讀寫分離詳解》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在行業(yè)資料-天天文庫。
1、大綱一、前言二、環(huán)境準備三、安裝與配置Nginx四、Nginx之反向代理五、Nginx之負載均衡六、Nginx之頁面緩存七、Nginx之URL重寫八、Nginx之讀寫分離注:操作系統(tǒng)為CentOS6.5x84_64,Nginx是最新版1.4.4一、前言在前面的幾篇博文中我們主要講解了Nginx作為Web服務器知識點,主要的知識點有nginx的理論詳解、nginx作為web服務器的操作講解、nginx作為LNMP架構的講解,不清楚的博友可以回頭看看,在這一篇博客中我們主要講解,nginx的反向代理、負載均衡、緩存、URL重寫以及讀寫分離詳解。好了,下面我們來具體
2、說一說。二、環(huán)境準備1.操作系統(tǒng):CentOS6.5x84_642.軟件:Nginx1.4.44.安裝源:[root@localhostnginx]#rpm-ivhhttp://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm[root@web1~]#rpm-ivhhttp://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm5.各節(jié)點時間同步(root@nginx~)#
3、ntpdate202.120.2.101 (root@web1~)#ntpdate202.120.2.101 (root@web2~)#ntpdate202.120.2.1016.關閉防火墻與selinux#serviceiptablesstopchkconfigiptablesoffgetenforce三.安裝Nginx1.解壓[root@localhostnginx]#tar-zxvfnginx-1.4.4.tar.gz2.新建nginx用戶與組[root@localhostnginx]#groupadd-g108-rnginx[root@localh
4、ostnginx]#useradd-u108-r-g108nginx[root@localhostnginx]#idnginx3.準備編譯配置文件[root@localhostnginx]#yum-yinstallpcre-developenssl-devel[root@localhostnginx-1.4.4]#./configure--prefix=/usr/--sbin-path=/usr/sbin/nginx--conf-path=/etc/nginx.conf--error-log-path=/var/log/nginx/error.log--htt
5、p-log-path=/var/log/nginx/access.log--pid-path=/var/run/nginx/nginx.pid--lock-path=/var/lock/nginx.lock--user=nginx--with-http_ssl_module--with-http_flv_module--with-http_stub_status_module--with-http_gzip_static_module--http-client-body-temp-path=/var/tmp/nginx/client/--http-proxy-
6、temp-path=/var/tmp/nginx/proxy/--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi--http-scgi-temp-path=/var/tmp/nginx/scgi--with-pcre4.編譯安裝[root@localhostnginx-1.4.4]#make&&makeinstall5.為nginx提供SysVinit腳本[root@localhostnginx-1.4.4]#cat/etc/init.
7、d/nginx#!/bin/sh##nginx-thisscriptstartsandstopsthenginxdaemon##chkconfig:-8515#description:NginxisanHTTP(S)server,HTTP(S)reverse#proxyandIMAP/POP3proxyserver#processname:nginx#config:/etc/nginx/nginx.conf#config:/etc/sysconfig/nginx#pidfile:/var/run/nginx.pid#Sourcefunctionlibrary
8、../etc/rc.d/init.d/