nginx|nginx 生产环境配置

usernobody nobody; ## 指定运行用户和组 worker_processes4; ## 指定worker数量,建议此处auto worker_rlimit_nofile51200; ## 最大打开文件描述符error_loglogs/error.lognotice; pid/var/run/nginx.pid; events { useepoll; ## 使用epoll事件驱动模型 worker_connections51200; ## 一个worker能处理的最大并发 }http { server_tokensoff; ## 隐藏nginx版本 includemime.types; proxy_redirectoff; ## 关闭代理重定向 proxy_set_headerHost $host; proxy_set_headerX-Real-IP $remote_addr; proxy_set_headerX-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size20m; ## 设置客户端请求body的最大允许大小 client_body_buffer_size256k; ## 设置客户端请求body的缓冲区大小 proxy_connect_timeout90; ## 与后端服务器连接的超时时长 proxy_send_timeout90; ## 把请求发送给后端服务器的超时时长 proxy_read_timeout90; ## 等待后端服务器发送响应报文的超时时长 proxy_buffer_size128k; ## 从代理服务器接收的响应的第一部分缓冲区 proxy_buffers4 64k; ## 从代理服务器读取响应的缓冲区number和size proxy_busy_buffers_size128k; ## 限制size在响应尚未完全读取时可能忙于向客户端发送响应的缓冲区总数 proxy_temp_file_write_size128k; ## 该指令设置缓冲临时文件的最大值default_typeapplication/octet-stream; charsetutf-8; ## 字符集client_body_temp_path/var/tmp/client_body_temp 1 2; ## 请求body临时目录 proxy_temp_path/var/tmp/proxy_temp 1 2; ## 代理服务器接受数据临时目录 fastcgi_temp_path/var/tmp/fastcgi_temp 1 2; ## FastCGI服务器接收临时目录 uwsgi_temp_path/var/tmp/uwsgi_temp 1 2; ## uwsgi 服务器接收临时目录 scgi_temp_path/var/tmp/scgi_temp 1 2; ##scgi服务器接收临时目录ignore_invalid_headerson; ## 开启控制忽略具有无效名称的标头字段 server_names_hash_max_size256; ## 服务器名称哈希表的最大值 server_names_hash_bucket_size64; ## 服务器名称哈希表存储bucket大小 client_header_buffer_size8k; ## 设置缓冲区以读取客户端请求标头 large_client_header_buffers4 32k; ## 设置缓冲区以读取客户端请求标头最大值number和size connection_pool_size256; ## 允许精确调整每个连接的内存分配 request_pool_size64k; ## 允许精确调整每个请求的内存分配output_buffers2 128k; ## 设置用于从磁盘读取响应的缓冲区number和size postpone_output1460; ## 客户端数据的传输最小值,单位字节client_header_timeout1m; ## 定义读取客户端请求标头的超时时长 client_body_timeout3m; ## 定义读取客户端请求主体的超时时长 send_timeout3m; ## 设置将响应传输到客户端的超时时长log_format main'$server_addr $remote_addr [$time_local] $msec+$connection ' '"$request" $status $connection $request_time $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; open_log_file_cachemax=1000 inactive=20s min_uses=1 valid=1m; access_loglogs/access.logmain; log_not_foundon; sendfileon; tcp_nodelayon; ## 启用长连接马上响应,提高性能 tcp_nopushoff; ## 关闭套接字选项reset_timedout_connectionon; ## 启用重置超时连接 keepalive_timeout10 5; ## 第一个参数设置长连接超时时长,第二个浏览器识别为keep-alive:timeout=5 keepalive_requests100; ## 设置可通过一个保持活动连接提供的最大请求数gzipon; ## 开启压缩 gzip_http_version1.1; ## 启用压缩时协议最小版本 gzip_varyon; gzip_proxiedany; ## 为所有代理请求启用压缩 gzip_min_length1024; ## 设置将被gzip压缩的响应的最小长度 gzip_comp_level6; ## 设置压缩等级 gzip_buffers16 8k; ## 设置用于压缩响应的缓冲区number和size gzip_proxiedexpired no-cache no-store private auth no_last_modified no_etag; gzip_typestext/plain application/x-javascript text/css application/xml application/json; gzip_disable"MSIE [1-6]\.(?!.*SV1)"; upstream tomcat8080 { ip_hash; server172.16.100.103:8080 weight=1 max_fails=2; server172.16.100.104:8080 weight=1 max_fails=2; server172.16.100.105:8080 weight=1 max_fails=2; }server { listen80; server_namewww.chan.com; # config_apps_begin root/data/webapps/htdocs; access_log/var/logs/webapp.access.logmain; error_log/var/logs/webapp.error.lognotice; location / {location ~* ^.*/favicon.ico$ { root/data/webapps; expires180d; ## 缓存180天 break; }if ( !-f $request_filename ) { proxy_passhttp://tomcat8080; break; } }error_page500 502 503 504/50x.html; location = /50x.html { roothtml; } }server { listen8088; server_namenginx_status; location / { access_logoff; denyall; return503; }location /status { stub_statuson; access_logoff; allow127.0.0.1; allow172.16.100.71; denyall; } }}

【nginx|nginx 生产环境配置】转载https://blog.csdn.net/ccschan/article/details/88095448#Nginx_0

    推荐阅读