Nginx 配置文件 nginx.conf简要说明

版权声明:本文为博主原创文章,未经博主允许不得转载! https://blog.csdn.net/qq_39326816/article/details/90750108

环境:Centos
nginx版本:1.14
worker_processes auto; #nginx进程,一般和cpu核数一样
error_log /www/wwwlogs/nginx_error.log crit;
#错误日志存放目录 crit为最小((从左到右:debug最详细 crit最少):
[ debug | info | notice | warn | error | crit ] )

pid /www/server/nginx/logs/nginx.pid; #进程pid 进程存放位置
worker_rlimit_nofile 51200;#最大连接数

events
{
use epoll; #epoll是多路复用IO(I/O Multiplexing)中的一种方式,但是仅用于linux2.6以上内核,可以大大提高nginx的性能
worker_connections 51200;#单个后台worker process进程最大并发连接数
multi_accept on; #可以同时接收多个新的连接(off状态智只能同时接收一个连接)
}

http
{
include mime.types; #文件扩展名与类型映射表
#include luawaf.conf;

	include proxy.conf;

    default_type  application/octet-stream;

    server_names_hash_bucket_size 512;
    client_header_buffer_size 32k;
    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_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 256k;
	fastcgi_intercept_errors on;

    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 16k;
    gzip_http_version 1.1;
    gzip_comp_level 2;
    gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml;
    gzip_vary on;
    gzip_proxied   expired no-cache no-store private auth;
    gzip_disable   "MSIE [1-6]\.";

    limit_conn_zone $binary_remote_addr zone=perip:10m;
	limit_conn_zone $server_name zone=perserver:10m;

    server_tokens off;  #版本号响应header和错误通知中的版本号
    access_log off;  #用来指定日至文件的路径及使用的何种日志格式记录日志

server
{
listen 888;
server_name x x x;
index index.html index.htm index.php;
root /www/server/phpmyadmin;

    #error_page   404   /404.html;
    include enable-php.conf;

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
    }

    location ~ .*\.(js|css)?$
    {
        expires      12h;
    }

    location ~ /\.
    {
        deny all;
    }

    access_log  /www/wwwlogs/access.log;
}

include /www/server/panel/vhost/nginx/*.conf;
}

猜你喜欢

转载自blog.csdn.net/qq_39326816/article/details/90750108