全局配置
全局错误日志定义类型:[ debug | info | notice | warn | error | crit ]
error_log /var/log/nginx/error.log info;
一个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 * worker_processesworker_processes
worker_connections 20000;
客户端请求头部的缓冲区大小 可使用#getconf PAGESIZE查询
client_header_buffer_size 4k;
多长时间检查一次缓存的有效信息。如果有一个文件在inactive时间内一次没被使用,它将被移除
open_file_cache_valid 60s;
open_file_cache指令中的inactive参数时间内文件的最少使用次数,如果超过这个数字,文件描述符一直是在缓存中打开的,如果有一个文件在inactive时间内一次没被使用,它将被移除
open_file_cache_min_uses 1;
如果激活了accept_mutex,那么多个Worker将以串行方式来处理,其中有一个Worker会被唤醒,其他的Worker继续保持休眠状态;如果没有激活accept_mutex,那么所有的Worker都会被唤醒,不过只有一个Worker能获取新连接,其它的Worker会重新进入休眠状态
accept_mutex on;
http{}
服务器名字的hash表大小
server_names_hash_bucket_size 128;
设置读取客户端请求标头的缓冲区大小
client_header_buffer_size 32k;
设置用于读取大客户机请求标头的最大值number和size缓冲区
large_client_header_buffers 4 64k;
设置客户端请求正文的最大允许大小,在“Content-Length”请求标头字段中指定
client_max_body_size 8m;
开启高效文件传输模式,sendfile指令指定nginx是否调用sendfile函数来输出文件,对于普通应用设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为off,以平衡磁盘与网络I/O处理速度,降低系统的负载。注意:如果图片显示不正常把这个改成off。
sendfile on;
开启目录列表访问,合适下载服务器,默认关闭。
autoindex 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压缩输出
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;
gzip_types text/plain application/x-javascript text/css application/xml;
压缩类型,默认就已经包含text/html,所以下面就不用再写了,写上去也不会有问题,但是会有一个warn。
gzip_vary on;
开启限制IP连接数的时候需要使用
limit_zone crawler $binary_remote_addr 10m;
启用或禁用在错误页面和“服务器”响应头字段中发出nginx版本。
server_tokens off;
虚拟主机的配置server{}
监听端口
listen 80;
域名可以有多个,用空格隔开
server_name www.ha97.com ha97.com;
index index.html index.htm index.php;
错误页面
error_page 404 = /404.php;
root /data/www/ha97;
日志格式设定
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;
异常日志
error_log /data/logs/mge.error.log;