#定義Nginx運行的用戶和用戶組 user www www; #nginx進程數,建議設置爲等於CPU總核心數。 worker_processes 8; #全局錯誤日誌定義類型,[ debug | info | notice | warn | error | crit ] error_log /var/log/nginx/error.log info; #進程文件 pid /var/run/nginx.pid; #一個nginx進程打開的最多文件描述符數目,理論值應該是最多打開文件數(系統的值ulimit -n)與nginx進程數相除,可是nginx分配請求並不均勻,因此建議與ulimit -n的值保持一致。 worker_rlimit_nofile 65535; #工做模式與鏈接數上限 events { # 參考事件模型,use [ kqueue | rtsig | epoll | /dev/poll | select | poll ]; epoll模型是Linux 2.6以上版本內核中的高性能網絡I/O模型,若是跑在FreeBSD上面,就用kqueue模型。 use epoll; #單個進程最大鏈接數(最大鏈接數=鏈接數*進程數) worker_connections 65535; } #設定http服務器 http { include mime.types; #文件擴展名與文件類型映射表 default_type application/octet-stream; #默認文件類型 #charset utf-8; #默認編碼 server_names_hash_bucket_size 128; #服務器名字的hash表大小 client_header_buffer_size 32k; #上傳文件大小限制 large_client_header_buffers 4 64k; #設定請求緩 client_max_body_size 8m; #設定請求緩 sendfile on; #開啓高效文件傳輸模式,sendfile指令指定nginx是否調用sendfile函數來輸出文件,對於普通應用設爲 on,若是用來進行下載等應用磁盤IO重負載應用,可設置爲off,以平衡磁盤與網絡I/O處理速度,下降系統的負載。注意:若是圖片顯示不正常把這個改 成off。 autoindex on; #開啓目錄列表訪問,合適下載服務器,默認關閉。 tcp_nopush on; #防止網絡阻塞 tcp_nodelay on; #防止網絡阻塞 keepalive_timeout 120; #長鏈接超時時間,單位是秒 #FastCGI相關參數是爲了改善網站的性能:減小資源佔用,提升訪問速度。下面參數看字面意思都能理解。 fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300; fastcgi_buffer_size 64k; fastcgi_buffers 4 64k; fastcgi_busy_buffers_size 128k; fastcgi_temp_file_write_size 128k; #gzip模塊設置 gzip on; #開啓gzip壓縮輸出 gzip_min_length 1k; #最小壓縮文件大小 gzip_buffers 4 16k; #壓縮緩衝區 gzip_http_version 1.0; #壓縮版本(默認1.1,前端若是是squid2.5請使用1.0) gzip_comp_level 2; #壓縮等級 gzip_types text/plain application/x-javascript text/css application/xml; #壓縮類型,默認就已經包含text/html,因此下面就不用再寫了,寫上去也不會有問題,可是會有一個warn。 gzip_vary on; #limit_zone crawler $binary_remote_addr 10m; #開啓限制IP鏈接數的時候須要使用 upstream blog.ha97.com { #upstream的負載均衡,weight是權重,能夠根據機器配置定義權重。weigth參數表示權值,權值越高被分配到的概率越大。 server 192.168.80.121:80 weight=3; server 192.168.80.122:80 weight=2; server 192.168.80.123:80 weight=3; } #虛擬主機的配置 server { #監聽端口 listen 80; #域名能夠有多個,用空格隔開 server_name www.ha97.com ha97.com; index index.html index.htm index.php; root /data/www/ha97; location ~ .*.(php|php5)?$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } #圖片緩存時間設置 location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$ { expires 10d; } #JS和CSS緩存時間設置 location ~ .*.(js|css)?$ { expires 1h; } #日誌格式設定 log_format access ‘$remote_addr – $remote_user [$time_local] 「$request」 ‘ ‘$status $body_bytes_sent 「$http_referer」 ‘ ‘」$http_user_agent」 $http_x_forwarded_for’; #定義本虛擬主機的訪問日誌 access_log /var/log/nginx/ha97access.log access; #對 「/」 啓用反向代理 location / { proxy_pass http://127.0.0.1:88; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; #後端的Web服務器能夠經過X-Forwarded-For獲取用戶真實IP proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #如下是一些反向代理的配置,可選。 proxy_set_header Host $host; client_max_body_size 10m; #容許客戶端請求的最大單文件字節數 client_body_buffer_size 128k; #緩衝區代理緩衝用戶端請求的最大字節數, proxy_connect_timeout 90; #nginx跟後端服務器鏈接超時時間(代理鏈接超時) proxy_send_timeout 90; #後端服務器數據回傳時間(代理髮送超時) proxy_read_timeout 90; #鏈接成功後,後端服務器響應時間(代理接收超時) proxy_buffer_size 4k; #設置代理服務器(nginx)保存用戶頭信息的緩衝區大小 proxy_buffers 4 32k; #proxy_buffers緩衝區,網頁平均在32k如下的設置 proxy_busy_buffers_size 64k; #高負荷下緩衝大小(proxy_buffers*2) proxy_temp_file_write_size 64k; #設定緩存文件夾大小,大於這個值,將從upstream服務器傳 } #設定查看Nginx狀態的地址 location /NginxStatus { stub_status on; access_log on; auth_basic 「NginxStatus」; auth_basic_user_file conf/htpasswd; #htpasswd文件的內容能夠用apache提供的htpasswd工具來產生。 } #本地動靜分離反向代理配置 #全部jsp的頁面均交由tomcat或resin處理 location ~ .(jsp|jspx|do)?$ { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://127.0.0.1:8080; } #全部靜態文件由nginx直接讀取不通過tomcat或resin location ~ .*.(htm|html|gif|jpg|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp3|wma)$ { expires 15d; } location ~ .*.(js|css)?$ { expires 1h; } } }
一、基於域名的虛擬主機(servername)javascript
二、基於ip的虛擬主機, (一塊主機綁定多個ip地址)php
三、基於端口的虛擬主機(listen若是不寫ip端口模式)css
演示1:經過不一樣servername的server和不一樣location匹配到不一樣路徑不一樣頁面html
1.經過servername訪問虛擬機上的服務,首先配置Windows上的C:\Windows\System32\drivers\etc\hosts文件,(同一個IP地址)前端
2.在虛擬機的/opt/html/目錄下編寫:index.html java
3.瀏覽器經過域名訪問:node
http://shizhan3:80/nginx
http://shizhan2:80/apache
演示2:經過相同servername的server和不一樣端口匹配到不一樣路徑不一樣頁面後端
訪問:http://shizhan3:80
訪問:http://shizhan3:8888
演示3:基於ip的虛擬主機匹配到不一樣路徑不一樣頁面
首先添加一個虛擬的IP:ifconfig
執行:ifconfig eth0:1 192.168.232.104 netmask 255.255.255.0 ---------- ifconfig eth0:1 down(刪除虛擬ip)
修改:vi /usr/local/nginx/conf/nginx.conf --- /usr/local/nginx/sbin/nginx -s reload ---- /usr/local/nginx/sbin/nginx
訪問:http://192.168.232.205:80/
訪問:http://192.168.232.104:80/ ----- 若是仍是上面界面,多重啓nginx服務便可
1.nginx訪問禁止容許規則:按照順序依次檢測,直到匹配到第一條規則
樣例: location / { deny 192.168.232.1; allow 192.168.1.0/24; deny all; }
2.修改配置文件:vi /usr/local/nginx/conf/nginx.conf
測試屏蔽外面的Windows主機訪問:http://shizhan3
使用內部的虛擬主機進行測試訪問:curl "http://192.168.232.205:80"
curl是一個利用URL規則在命令行下工做的文件傳輸工具,能夠說是一款很強大的http命令行工具
httpd是Apache超文本傳輸協議(HTTP)服務器的主程序。被設計爲一個獨立運行的後臺進程,它會創建一個處理請求的子進程或線程的池。
開啓使用「HTTP基本認證」協議的用戶名密碼驗證,密碼應該使用crypt()
函數加密。 能夠用Apache發行包中的htpasswd
命令來建立此類文件
1.須要安裝httpd纔可使用上面命令:yum -y install httpd
查看htpasswd的使用幫助:htpasswd --help
2.使用htpasswd建立文件和密碼:htpasswd -bcm /var/user zzz 123456
[root@shizhan2 sbin]# htpasswd -bcm /var/user zzz 123456 Adding password for user zzz [root@shizhan2 sbin]# cat /var/user zzz:$apr1$q7/4BTqq$gYGpX1dP9dcYXCPrHBanA/ [root@shizhan2 sbin]#
3.修改配置文件:vi /usr/local/nginx/conf/nginx.conf,而後重啓nginx服務
4.訪問:http://shizhan3:8888/
不然: