nginx 配置文件介绍
程序员文章站
2022-06-11 16:20:18
...
user www www; //主模块指令,user进程运行用户和用户组,默认nobody
worker_processes auto; //主模块指令,指定nginx的进程数
error_log /home/wwwlogs/nginx_error.log crit; //主模块指令,定义全局错误日记文件,输出等级crit为最少
pid /usr/local/nginx/logs/nginx.pid; //主模块指令,指定进程id的存储文件的位置
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200; //绑定worker进程和cpu
events //nginx 的工作模式和连接数上限
{
use epoll; //事件模块指令 nginx工作模式 select和poll是标准的工作模式,kqueue和epoll是高效的
//工作模式 epoll是用在linux kqueue用在BSD系统。 epoll首选。
worker_connections 51200; //事件模块指令 nginx的每个进程最大连接数,默认1024
multi_accept on;
}
http
{
include mime.types; //主模块指令 包含导入文件
default_type application/octet-stream; //http的核心模块指令
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;//指定客户端请求的headerbuffer大小
large_client_header_buffers 4 32k;//指定客户端请求较大的消息头的缓存最大数量和大小
client_max_body_size 50m; //客户端请求最大的的单文件字节数
sendfile on; //开启高效的文件传输迷失
tcp_nopush on; //防止网络阻塞
keepalive_timeout 60; //服务器连接活动超时时间
tcp_nodelay on; //防止网络阻塞
fastcgi_connect_timeout 300; //指定连接到后端FastCGI的超时时间
fastcgi_send_timeout 300; //指定向FastCGI传送请求的超时时间,这个值是已经完成两次握手后向FastCGI传送请求的超时时间。
fastcgi_read_timeout 300; //指定接收FastCGI应答的超时时间,这个值是已经完成两次握手后接收FastCGI应答的超时时间。
fastcgi_buffer_size 64k; //用于指定读取FastCGI应答第一部分需要多大的缓冲区,这个值表示将使用1个64KB的缓冲区读取应答的第一部分(应答头),可以设置为fastcgi_buffers选项指定的缓冲区大小。
fastcgi_buffers 4 64k; //指定本地需要用多少和多大的缓冲区来缓冲FastCGI的应答请求。如果一个PHP脚
本所产生的页面大小为256KB,那么会为其分配4个64KB的缓冲区来缓存;如果页面大小大于256KB,那么大于256KB的部分会缓存到
fastcgi_temp指定的路径中,但是这并不是好方法,因为内存中的数据处理速度要快于硬盘。一般这个值应该为站点中PHP脚本所产生的页面大小的
中间值,如果站点大部分脚本所产生的页面大小为256KB,那么可以把这个值设置为“1616k”、“464k”等。
fastcgi_busy_buffers_size 128k; //的默认值是fastcgi_buffers的两倍
fastcgi_temp_file_write_size 256k; //表示在写入缓存文件时使用多大的数据块,默认值是fastcgi_buffers的两倍。
#HttpGzip模块,支持在线实时压缩输出数据流。
gzip on; //开启
gzip_min_length 1k; //设置允许压缩页面的最小字节数。
gzip_buffers 4 16k; //四个单位为16k的内存作为压缩结果六缓存。
gzip_http_version 1.0; //http协议版本
gzip_comp_level 2; //gzip压缩比,1压缩比最小,处理速度最快
gzip_types text/plain application/x-javascript text/css application/xml; //指定压缩的类型
gzip_vary on; //前段缓存经过,gzip
gzip_proxied expired no-cache no-store private auth;
gzip_disable "MSIE [1-6]\.";
#limit_conn_zone $binary_remote_addr zone=perip:10m;
##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.
server_tokens off;
#log format
//httplog模块指令,指定nginx日记的输出格式。
log_format access '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
#nginx负载均衡器
upstream www.lnmp.org
{
server 192.168.5.225:80;
server 192.168.5.226:80;
}
#
server
{
listen 80 default; //80端口, default默认
#listen [::]:80 default ipv6only=on;
server_name //访问域名 IP
index index.html index.htm index.php; //访问文档优先级
root /home/wwwroot/default; //网站根目录
#error_page 404 /404.html; //错误页
location ~ [^/]\.php(/|$)
{
# comment try_files $uri =404; to enable pathinfo
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
#include pathinfo.conf;
}
location /nginx_status {
stub_status on;
access_log off;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ //图片静态处理
{
expires 30d; //时效30天
}
location ~ .*\.(js|css)?$ // 后缀.js 和 .css 静态处理
{
expires 12h; //时效12小时
}
access_log /home/wwwlogs/access.log access; //主机访问日记保存路径 access为输出格式
}
include vhost/*.conf;
}
we
转载于:https://my.oschina.net/xinson/blog/281044
上一篇: CentOS 下 LNMP 环境配置