nginx配置文件详解

本文详细解读了Nginx配置文件nginx.conf中的关键设置,包括worker_processes、事件处理、连接管理、HTTP头处理、gzip压缩、FastCGI和代理设置,以及如何通过vhost配置来适应不同域名需求。
摘要由CSDN通过智能技术生成

目录

一:nginx.conf相关设置


一:nginx.conf相关设置

user  www www;

worker_processes  4;

error_log /data/logs/nginx/error.log error;

pid logs/nginx.pid;

worker_rlimit_nofile 65535;

events {

        use epoll;               复用客户端线程的轮询方法

        accept_mutex on;

        worker_connections  65535;

        multi_accept on;

}

连接数等:

http {

        include mime.types;

        default_type application/octet-stream;

        charset utf-8;

        server_names_hash_bucket_size 256;

        client_header_buffer_size 128k;

        large_client_header_buffers 16 128k;

        client_max_body_size 256m;

        #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 /data/logs/nginx/access.log main;

        access_log off;

        sendfile on;                nginx在支持了sendfile系统调用后,避免了内核层与用户层的上线文切换(content swith)工作,大大减少了系统性能的开销

        sendfile_max_chunk 0;           设置为512k

        keepalive_timeout 65;              将keepalive_timeout时间调小会导致上传操作可能无法完成;调大点的话,许多无效的http连接占据着nginx的连接数

        keepalive_requests 300;       长链接时间

        send_timeout 60s;            

        autoindex off;

        tcp_nopush on;             诉nginx在一个数据包里发送所有头文件,而不一个接一个的发送。

        tcp_nodelay on;         告诉nginx不要缓存数据,而是一段一段的发送--当需要及时发送数据时

        client_header_timeout 60;           设置请求头和请求体(各自)的超时时间。我们也可以把这个设置低些。

        client_body_timeout 60;

        reset_timedout_connection on;           告诉nginx关闭不响应的客户端连接

        gzip on;

        gzip_buffers 64 16k;

        gzip_comp_level 5;

        gzip_http_version 1.1;

        gzip_min_length 1024;

         gzip_proxied any;

        gzip_vary on;

        gzip_types text/javascript application/javascript application/x-javascript text/x-json application/json text/css text/plain image/jpeg image/gif image/jpg image/png;            设置压缩类型()

        gzip_disable  "MSIE [4-6]\.";

        gzip_static on;

        open_file_cache max=65535 inactive=20s;  缓存最大长度和缓存时间

        open_file_cache_valid 30s;        缓存间隔时间

        open_file_cache_min_uses 1;

        open_file_cache_errors on;

        fastcgi_connect_timeout 300;

        fastcgi_send_timeout 300;

        fastcgi_read_timeout 300;

        fastcgi_buffer_size 256k;

        fastcgi_buffers 16 64k;

        fastcgi_busy_buffers_size 256k;

        fastcgi_temp_file_write_size 256k;

        proxy_connect_timeout 300s;

         proxy_send_timeout 900;   

         proxy_read_timeout 900;

         proxy_buffer_size 32k;      缓存后端数据大小

         proxy_buffers 4 64k;

         proxy_busy_buffers_size 128k;

         proxy_redirect off;

         proxy_hide_header Vary;

        proxy_set_header Accept-Encoding '';

        proxy_set_header Host $host;

        proxy_set_header Referer $http_referer;

        proxy_set_header Cookie $http_cookie;

        proxy_set_header X-Real-IP $remote_addr;

        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        include vhost/*.conf;        vhost里面是对应的域名配置文件

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

攻城狮的梦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值