最近幾個月的項目都是在nginx 環境下搭建的,特此記錄下配置文件的相關內容,以備不時之需,歡迎吐槽~~
詳細配置信息請勤奮查閱官方官方文件:http://wiki.nginx.org/Configuration
#指定Nginx運行的使用者和使用者群組,據此可設定nginx存取資料夾的權限,防止非法使用者存取無權限資料夾。順便提一句,對於php工程的日誌檔案讀寫
#所屬用戶不是nginx,因為nginx是將php轉發給php-cgi來解析,因此用戶是php-cgi的所有者,一般是www-data
user nginx nginx;
#開啟nginx的進程數目,數目應小於等於CPU總核心數,提高程式的並發性
worker_pro #全局存取和錯誤日誌及其級別,[ debug | info | notice | warn | error | crit ]
access_log /var/nginx/access.log;
error_log /varess.arnx/error.
#預設的日誌格式設定
log_format access $remote_addr - $remote_user [$time_local] "$request" '
'"$http_user_agent" $http_x_forwarded_for';
#進程運行時的檔案
pid /run/nginxpid;
pid /run/nginxpid;
{
#事件模型,use [ kqueue | rtsig | epoll | /dev/poll | select | poll ];
3版本效能網路I/O模型,如果跑在FreeBSD上面,就用kqueue模型。
use epoll;
#單一進程最大連線數(最大連線數=連線數*進程數),我的設定是768*4
接受多個請求,高併發
multi_accept on;
}
}
{
include mime .types; #使用MIME格式,檔案副檔名與檔案類型對應表default_type application/octet-stream; #預設檔案類型,檔案流
#charset utf-8; # #
#charset utf-8; # # server_names_hash_bucket_size 128; #伺服器名字的hash表大小
#設定上傳檔案的大小上限為8MB
client_max_body_sizeizesize ,
呼叫sendfile 函數(zero copy 方式)來輸出檔案,對於普通應用設為on,如果用來進行下載等應用磁碟IO重負載應用,#可設定為off,以平衡磁碟與網路I/O處理速度,降低系統的負載和uptime。注意:如果圖片顯
示不正常把這個改成off。
sendfile on;
#設定存取黑白名單, 檔案名,大小
hite_black_list_conf conf/black.list zone =black1:4m;white_list white1 on; #白名單white1 在整個http{} 中都開啟
black_list black1 on; #黑名單black1 在整個http{} 都開啟網路阻塞
tcp_nodelay on; #防止網路阻塞
keepalive_timeout 65; #長連線逾時時間,單位為秒,開啟速度gzip on;
#開啟gzip壓縮輸出gzip_min_length 1k;
#1032 月開啟壓縮的檔案大小。 #設定係統取得幾個單位的緩存用於儲存gzip的壓縮結果資料流,一次申請4*16=64k快取
gzip_http_version 1.0;
#壓縮檔案類型,css,js,php,jpg,png
gzip_typestext/plain application/x-java text/javascript application/x-httpd-php image/jpeg image/gif image/png
gzip_vary on;#允許例外
gzip_disable"MISE[1-6]"#IE6及以下禁用壓縮
#limit_zone crawler $binary_remote_addr 10m;開啟限制開啟限制連接數的時候需要使用? upstream www .xxx.com {
#upstream的負載平衡,weight是權重,可以依照機器配置定義權重。 weigth參數表示權值,權值越高被分配到的幾率越大。
server 192.168.80.121:80 weight=3;
server 192.168.80.122:80 weight=2; ;
}
#FastCGI相關參數是為了改善網站的效能:減少資源佔用,提高存取速度。
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcw
#各伺服器的設定
server
{
#網域可以有多個,用空格隔開
server_name www.xx.com xx.com; root /data/www/xx;
#手機端導向另一個頁面
location / {
if ($http_user_agent ~* '(Android| iPhone|iPad|webOS|iPod|BlackBerry)') { rewrite ^.+ http://m.xx.com; }
index index.php index.html index .htm;}#靜態檔案直接存取
#圖片快取時間設定, 類似html頁meta標籤,可設定expire or max-age
~ |jpg|jpeg|png|bmp|swf
)$ {
expires 10d;
}
#php導引9000連接埠
root fastcgi_split_path_info ^(.+.php)(/.+)$; # NOTE: You should have "cgi .fix_pathinfo = 0;" in php.ini # With php5-cgi alone: # With php5-fpm: #fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $ument_root$ }
#JS與CSS快取時間設定location ~ .*.(js|css)?$ {
expires 1h;
}
#錯誤頁 error_page 500 502 5030 /50x.html {
_protoalxy57. off;
proxy_set_header X-Real-IP $remote_addr;
#後端的Web伺服器可以透過X-Forwarded-For取得使用者真實IP
_proxy_set_header X-Forwarded-Forxy_profid;反向代理的配置,可選。
proxy_set_header Host $host;
client_max_body_size 10m; #允許客戶端請求的最大單文件字節數
5_cproxy_send_timeout 90; #後端伺服器資料回傳時間(代理發送逾時)
proxy_read_timeout 90; #連線成功後,後端伺服器回應時間(M比賽代理接收逾時)
_伺服器(nginx)保存使用者頭資訊的緩衝區大小
proxy_buffers 4 32k; #proxy_buffers緩衝區,網頁平均在32k以下的設定
_proxy_busy_buffers_sizesizes(prot)
proxy_temp_file_write_size 64k;
#設定快取資料夾大小,大於這個值,將從upstream伺服器傳送
} location /NginxStatus {
stub_status on;
access_log on;
auth_basic "NotxStatus";
#htpasswd檔案的內容可以用apache提供的htpasswd工具來產生。}
#如果使用j2ee, 可將頁導向8080 (jsp| jspx|do|action)?$ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Real-IP $remote_地址;
proxy_pass http ://127.0.0.1:8080;}
}#再設定一個行動端存取的server, 接過手機端存取主站導來的請求 server_name m.xx.com www.m.xx.com;
access_log /usr/share/nginx/logs/mobile_access.log; location / { root /usr/share/nginx/html/mobile;
index index.html ); g|png)$ {root /usr/share/nginx/ html/mobile; } location ~ .php$ {
fastcgi_split_path_info ^(.+.php)(/.+)$;# NOTE: You should have " cgi.fix_pathinfo = 0;" in php.ini # With php5-cgi alone: # With php5-fpm:
#fastcgi_pass unix:/var/run/php5-fpm.sock;fastcgi_index index.php; fastcgi_? include fastcgi_params; }
}
以上就介紹了Nginx.conf 配置小結,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。