结构说明
...
#全局块
events {#events块
...
}
http{#http块
...
#http全局块
server { #server块
...
#server全局块
location [PATTERN] {#location块
...
}
location [PATTERN] {
...
}
}
server{
...
}
#http全局块
...
}
默认配置文件
默认的 nginx 的配置文件 default.conf
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#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;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
一定要注意,server 中的
location /
的根目录一定要与部署项目的文件夹名称对应上,root html/folderName
,如果你是直接将要部署的项目内容直接拷到了 html 文件夹下,那么配置依然是root html
,不需要修改
配置详解
#运行用户
user nobody;
#进程数,值越大 Nginx 并发能力越强
#可以设置成和 cpu 的核心数量相等,但是如果nginx服务器上有其他服务,可以适当减少该值
worker_processes 1;
#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#进程 PID 文件
#pid logs/nginx.pid;
#工作模式及连接数上限
events {
# 参考事件模型,use [ kqueue | rtsig | epoll | /dev/poll | select | poll ];
# epoll模型是Linux 2.6以上版本内核中的高性能网络I/O模型,linux建议epoll,如果跑在FreeBSD上面,就用kqueue模型。
# 补充说明:
# 与apache类似,nginx针对不同的操作系统,有不同的事件模型
# 1)标准事件模型
# Select、poll属于标准事件模型,如果当前系统支持高效事件模型,nginx会选择select或poll
# 2)高效事件模型
# Kqueue:常用于FreeBSD 4.1+, OpenBSD 2.9+平台, NetBSD 2.0 和 MacOS X系统使用kqueue可能会造成内核崩溃。
# Epoll:常用于Linux 2.6以上版本内核中的高性能网络I/O模型
# /dev/poll:常用于Solaris 7 11/99+,HP/UX 11.22+ (eventport),IRIX 6.5.15+ 和 Tru64 UNIX 5.1A+。
# Eventport:常用于Solaris 10。 为了防止出现内核崩溃的问题, 有必要安装安全补丁。
use epoll;
#操作系统最大的限制65535
#worker_rlimit_nofile 10240
# 连接数
worker_connections 1024;
# 最大并发总数=连接数*进程数
# 一个worker进程能并发处理(发起)的最大连接数(包含与客户端或后端被代理服务器间等所有连接数)
# nginx服务器的理论最大连接数为65535
# max_clients = worker_processes * worker_connections
# nginx作为反向代理服务器的情况:max_clients = worker_processes * worker_connections / 4
# nginx作为 http 服务器的情况:max_clients = worker_processes * worker_connections / 2
# 为什么 max_clients http要除以2,可以理解为一个请求占用两个连接,请求/响应,反向代理一个请求占用四个连接
# 操作系统可以打开的最大文件数目 maxOpenFile :终端命令`cat /proc/sys/fs/file-max`的输出值
# 理论上的并发总数可能会和实际有所偏差,因为主机还有其他的工作进程需要消耗系统资源
# 并发受IO约束,所以 max_clients < maxOpenFile,也即worker_connections < maxOpenFile /worker_processes
#keepalive超时时间。
keepalive_timeout 60;
#客户端请求头部的缓冲区大小。该值可以根据系统分页大小来设置,一般一个请求头大小不会超过1k,不过一般系统分页都要大于1k,所以这里设置为分页大小。
#分页大小可以用命令getconf PAGESIZE 取得
#但也有超过4k的情况,但是该值必须设置为“系统分页大小”的整倍数
client_header_buffer_size 4k;
#这个将为打开文件指定缓存,默认是没有启用的
#max指定缓存数量,建议和打开文件数一致
#inactive是指经过多长时间文件没被请求后删除缓存。
open_file_cache max=65535 inactive=60s;
#指多长时间检查一次缓存项目的有效信息。
#默认值: 60s 使用位置:http, server, location
open_file_cache_valid 80s;
#open_file_cache指令中inactive参数指定的时间内,文件的最少使用次数,如果超过该值,文件描述符一直是在缓存中打开的,如上例,如果有一个文件在inactive时间内一次没被使用,它将被移除。
#默认值: 1 使用位置:http, server, location
open_file_cache_min_uses 1;
#指定是否在搜索一个文件时记录cache错误
# [on | off], 默认值:off 使用位置:http, server, location
open_file_cache_errors on;
}
#设定http服务器,利用它的反向代理功能提供负载均衡支持
http {
#设定 mime 类型,类型由 mime.type 文件定义
#文件扩展名与文件类型映射表
include mime.types;
#包含的子配置项的位置和文件
# include /etc/nginx/conf.d/*.conf;
#默认文件类型
default_type application/octet-stream;
#默认编码
#charset utf-8;
#设定日志格式
#$remote_addr与$http_x_forwarded_for用以记录客户端的ip地址;
#$remote_user:用来记录客户端用户名称;
#$time_local: 用来记录访问时间与时区;
#$request: 用来记录请求的url与http协议;
#$status: 用来记录请求状态;成功是200
#$body_bytes_sent :记录发送给客户端文件主体内容大小;
#$http_referer:用来记录从那个页面链接访问过来的;
#$http_user_agent:记录客户浏览器的相关信息;
#通常web服务器放在反向代理的后面,这样就不能获取到客户的IP地址了,通过$remote_add拿到的IP地址是反向代理服务器的iP地址。
#反向代理服务器在转发请求的http头信息中,可以增加x_forwarded_for信息,用以记录原有客户端的IP地址和原来客户端的请求的服务器地址。
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
#定义本虚拟主机的访问日志
access_log /usr/local/nginx/logs/host.access.log main;
#服务器名字的hash表大小
#保存服务器名字的hash表是由指令server_names_hash_max_size 和server_names_hash_bucket_size所控制的。
#参数hash bucket size总是等于hash表的大小,并且是一路处理器缓存大小的倍数。在减少了在内存中的存取次数后,使在处理器中加速查找hash表键值成为可能。
#如果hash bucket size等于一路处理器缓存的大小,那么在查找键的时候,最坏的情况下在内存中查找的次数为2。第一次是确定存储单元的地址,第二次是在存储单元中查找键 值。因此,如果Nginx给出需要增大hash max size 或 hash bucket size的提示,那么首要的是增大前一个参数的大小.
server_names_hash_bucket_size 128;
#设置客户端请求头部的缓冲区大小
# nginx默认用client_header_buffer_size读取header值,如果header过大,则用large_client_header_buffers
client_header_buffer_size 32k;
large_client_header_buffers 4 64k;
#设定通过nginx上传文件的大小
#使用位置:http, server, location
client_max_body_size 8m;
#开启高效文件传输模式
#sendfile 指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,
#普通应用:on,
#下载/磁盘IO重负载等应用,设置为 off,以平衡磁盘与网络I/O处理速度,降低系统的负载(uptime)
#注意:如果图片不正常显示改成off
sendfile on;
#此选项允许或禁止使用socke的TCP_CORK的选项,此选项仅在使用sendfile的时候使用
#tcp_nopush on;
tcp_nodelay on;
#开启目录列表访问,合适下载服务器,默认off。
autoindex on;
#连接超时时间,单位秒s
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;
#压缩类型,默认包含textml,所以不用设置,添加也可,但会产生warn
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
gzip_disable "MSIE [1-6].";
#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;
#开启限制IP连接数的时候需要使用
#limit_zone crawler $binary_remote_addr 10m;
#负载均衡配置
#nginx的upstream目前支持5种方式的分配,前三种nginx默认支持,后两种三方的支持方式
#1、轮询(默认)
#每个请求按时间顺序轮流分配到不同的后端服务器,如果后端服务器down掉,能自动剔除(不设置weight)
#2、weight
#指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。
#3、ip_hash
#每个请求按访问ip(nginx前置服务器或客户端IP)的hash结果分配,这样每个访客固定访问某个后端服务器,解决session一致问题
#upstream upstream_server_name {
# ip_hash;
# server 192.168.0.1:88;
# server 192.168.0.2:80;
#}
#4、fair(第三方)
#按后端服务器的响应时间(RT)来分配请求,RT短的优先分配
#upstream upstream_server_name {
# server server1;
# server server2;
# fair;
#}
#5、url_hash(第三方)
#与ip_hash类似,按访问url的hash结果来分配请求,使每个url定向到同一个后端服务器,后端服务器为缓存时比较有效
#在upstream中加入hash语句,server语句中不能写入weight等其他的参数,hash_method是使用的hash算法
#upstream upstream_server_name {
# server squid1:3128;
# server squid2:3128;
# hash $request_uri;
# hash_method crc32;
#}
#使用位置:http
upstream upstream_server_name {
#upstream的负载均衡,weight是权重,权值越高被分配到的几率越大。
server 192.168.0.121:80 weight=3;
server 192.168.0.122:80 weight=2;
server 192.168.0.123:80 weight=3;
#定义负载均衡设备的Ip及设备状态
#upstream upstream_server_name{
# ip_hash;
# server 127.0.0.1:8081 down;
# server 127.0.0.1:8080 weight=2;
# server 127.0.0.1:8082;
# server 127.0.0.1:8083 backup;
#}
#每个设备的参数说明:
#1.down表示当前server暂停,不参与负载
#2.weight越大,负载的权重就越大,默认为1
#3.max_fails:允许请求失败的次数默认为1.当超过最大次数时,返回proxy_next_upstream模块定义的错误
#4.fail_timeout:max_fails次失败后,暂停的时间,一般两者联合使用
#5.backup:其它非backup机器down或者忙的时候,请求backup机器。所以此台机器压力会最轻。
#nginx支持同时设置多组的负载均衡,用来给不用的server来使用。
#client_body_in_file_only设置为On 可以将client post过来的数据记录到文件中用来做debug
#client_body_temp_path设置记录文件的目录 可以设置最多3层目录
#location对URL进行匹配.可以进行重定向或者进行新的代理 负载均衡
}
#在需要使用负载均衡的server中增加 proxy_pass http://upstream_server_name/;
#设定虚拟主机配置
#http服务上支持若干虚拟主机。每个虚拟主机对应一个server配置项
server {
#侦听80端口
listen 80;
#配置域名或服务器名,通过server_name访问,如果有多个,用空格隔开
server_name www.nginx.cn;
#定义服务器的默认网站根目录位置
root html;
#设定本虚拟主机的访问日志
access_log logs/nginx.access.log main;
# #对 "/" 启用反向代理
# root: 静态项目dist文件夹,放到文件夹html中,查找的时候会到html/dist文件夹去查找资源
# index: 默认去上述路径中找到index.html或者index.htm
location / {
#定义首页索引文件的名称
index index.php index.html index.htm;
# 设置目录浏览功能,Nginx默认是不允许列出整个目录的
# autoindex on;
# 默认on,显示文件大小,单位bytes
# off,显示文件的大概大小,单位是kB/MB/GB
# autoindex_exact_size off;
# 默认off,显示文件时间为GMT时间
# on,显示文件时间为文件所在服务器时间
# autoindex_localtime on;
}
location ~ ^/proxy_prix/function {
proxy_pass https://xxx.xx.com;
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;
#缓冲区代理缓冲用户端请求的最大字节数
#默认值是操作系统页面大小的两倍,8k或者16k,此时提交200k的图片,都返回500 Internal Server Error错误
#如果设置为256k,可提交任意小于256k的图片
client_body_buffer_size 128k;
#允许客户端请求或提交的最大单文件字节数
#用法类似client_body_buffer_size
#使用位置:http, server, location
client_max_body_size 10m;
#设置使nginx阻止HTTP响应码为400或者更高的响应码。
proxy_intercept_errors on;
#nginx跟后端服务器连接超时时间(代理连接超时)
#代理连接超时-发起握手等候响应超时时间
proxy_connect_timeout 90;
#连接成功后,后端服务器响应时间(代理接收超时)
#代理接收超时-等候后端服务器响应时间,已经进入后端的队列中等候处理(也即后端服务器处理请求的时间)
proxy_read_timeout 90;
#后端服务器数据回传时间(代理发送超时)
#代理发送超时-在规定时间之内后端服务器必须传完所有的数据
proxy_send_timeout 90;
#设置代理服务器(nginx)保存用户头信息的缓冲区大小
#设置从被代理服务器读取的第一部分应答的缓冲区大小,通常情况下这部分应答中包含一个小的应答头
#默认值为指令proxy_buffers中指定的一个缓冲区大小,可以设置为更小
proxy_buffer_size 4k;
#proxy_buffers缓冲区,网页平均在32k以下的设置
#设置用于读取应答(来自被代理服务器)的缓冲区数目和大小,默认情况也为分页大小,根据操作系统的不同可能是4k或者8k
proxy_buffers 4 32k;
#高负荷下缓冲大小(proxy_buffers*2)
proxy_busy_buffers_size 64k;
#设置在写入proxy_temp_path时数据的大小,预防一个工作进程在传递文件时阻塞太长
#设定缓存文件夹大小,大于这个值,将从upstream服务器传
proxy_temp_file_write_size 64k;
}
#设定查看Nginx状态的地址
#Nginx 的访问控制模块默认就会安装,而且写法也非常简单,可以分别有多个allow,deny,允许或禁止某个ip或ip段访问,依次满足任何一个规则就停止往下匹配
location /NginxStatus {
stub_status on;
access_log on;
#auth_basic "NginxStatus";
#auth_basic_user_file confpasswd;
#htpasswd文件的内容可以用apache提供的htpasswd工具来产生。
allow 192.168.10.100;
allow 172.29.73.0/24;
deny all;
}
# 定义错误提示页面
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
#静态文件,缓存时间设置
# .*.(gif|jpg|jpeg|png|bmp|swf)$
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
#过期30天,静态文件不怎么更新,过期可以设大一点,
#如果频繁更新,则可以设置得小一点。
expires 30d;
}
#PHP 脚本请求全部转发到 FastCGI处理. 使用FastCGI默认配置.
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
#禁止访问 .htxxx 文件
location ~ /.ht {
deny all;
}
}
}