Nginx 的全局和虛擬主機配置

Httpd.conf nginx.conf my-heavy-innode-4G.cnf php.ini  用中文註釋javascript

# user:指定 Nginx Worker 進程運行用戶和用戶組,默認 nobody 帳號php

 

user nginx;css

 

group nginx;html

#worker_processes:指定 Nginx 要開啓的進程數,建議和 cpu 數量同樣的java

worker_processes 1;node

error_log:定義全局錯誤日誌文件。日誌有輸出級別:nginx

 

[ debug | info | notice | warn | error | crit ]apache

 

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

{

include mime.types; #文件拓展名和文件類型映射表 default_type application/octet-stream;#默認文件類型 charset utf-8; #默認編碼

server_names_hash_bucket_size 128;#服務器名字的 bash 表大小

client_header_buffer_size 32k; #上傳文件大小限制

large_client_header_buffers 4 64k;

client_max_body_size 8m;

sendfile on; #開啓高效文件傳輸模式

autoindex on;#開啓目錄表訪問,合適下載服務器,默認關閉

tcp_nopush on;防止網絡阻塞

tcp_nodelay on; #防止網絡阻塞

keepalive_timeout 120; #長鏈接超時時間,單位是秒

#FastCGI 相關參數是爲了改善網站的性能:減小資源佔用,提升訪問速度。下面參數看字面意 思都能理解。

 

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;#壓縮版本 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 90sec.blog.51cto.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.90sec.com 90sec.com

 

index index.html index.htm index.php;

 

root /data/www/90sec 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/90secaccess.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


134

 

 

location

 

~ .*.(htm|html|gif|jpg|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp

 

3|wma)$

 

{ expires 15d; }

 

location ~ .*.(js|css)?$

 

{ expires 1h; }

 

} }

相關文章
相關標籤/搜索