##定義nginx運行的用戶各用戶組
user nginx nginx;javascript
##nginx進程數,建議設置與cpu核心數一致
worker_processes 1;php
##全局錯誤日誌定義類型[ debug | info | notice | warn | error | crit ]css
##可使用多個error_log,每一個指向不一樣的文件和不一樣的日誌記錄,出了debug級別以外,error_log也能夠取值: debug_core, debug_alloc, debug_mutex, debug_event, debug_http, debug_imaphtml
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;前端
##進程文件java
#pid logs/nginx.pid;node
##工做模式與鏈接數上限
events {nginx
##單個進程的最大鏈接數
worker_connections 65535;
}web
##設置http服務器
http {apache
##引入外置配置文件
include /etc/nginx/conf.d/*.conf;
##文件擴展名與文件類型映射表
include mime.types;
##默認文件類型
default_type application/octet-stream;
##默認編碼
#charset utf-8;
##服務器名字的hash表大小
#server_name_hash_bucket_size 128;
##上傳文件大小限制
#client_header_buffer_size 32K;
##設定請求緩存
#large_client_header_buffers 4 64K;
##最大緩存
client_max_body_size 8M;
##日誌格式設定
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#log_format ldc ....;
##訪問日誌
#access_log logs/access.log main;
##開啓高效文件傳輸模式sendfile指令指定nginx是否調用sendfile函數來輸出文件,對於普通應用設爲 on,若是用來進行下載等應用磁盤IO重負載應用,可設置爲off,以平衡磁盤與網絡I/O處理速度,下降系統的負載。注意:如 果圖片顯示不正常把這個改爲off。
sendfile on;
##開啓目錄列表訪問,合適下載服務器,默認關閉
#autoindex on;
##防止網絡阻塞
#tcp_nopush on;
##防止網絡阻塞
#tcp_nodelay on;
##長連接超時時間,單位是秒,爲0,無超時
keepalive_timeout 65;
##gzip模塊設置
##開啓gzip壓縮輸出
#gzip on;
##最小壓縮文件大小
#gzip_min_length 1k;
##壓縮緩衝區
#gzip_buffers 4 16k;
##壓縮版本(默認1.1,前端若是squid2.5請使用1.0)
#gzip_http_version 1.0;
##壓縮等級
#gzip_comp_level 2;
##壓縮類型,默認就已經包含了textxml,默認不用寫,寫上去也沒有問題,會有一個warn
#gzip_types text/plain application/x-javascript text/css application/xml;
#gzip_vary on;
##開啓鏈接限制ip鏈接數使用
#limit_zone crawler $binary_remote_addr 10m;
##FastCGI相關參數是爲了改善網站的性能:減小資源佔用,提升訪問速度。
fastcgi_connect_timeout 300;
listen 80;
##域名能夠有多個,用空格隔開
server_name localhost;
#server_id app1
#server_name app1
#charset koi8-r;
##定義本虛擬主機的訪問日誌
#access_log logs/host.access.log main;
#access_log logs/access.log ldc; 表示用ldc的log format
#include ssl/xxx.xx; 引入ssl證書
location / {
root html;
index index.html index.htm;
}
##圖片緩存時間設置
location ~.*.(gif|jpg|jpeg|png|bmp|swf)${
expires 10d;
}
##js和CSS緩存時間設置
location ~.*.(js|css)?${
expires 1h;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
##設定查看Nginx狀態的地址
##本地動靜分離反向代理配置
}
}