标签:bsp event erro 9.png span buffer 使用 col png
备注:worker_processes 1(数量建议跟系统CPU的核数相同,例如:2个CPU,每个CPU4核,建议为8),worker_connections 建议小于worker_rlimit_nofile
备注:use 指令根据操作系统相关,linux 操作系统使用use epoll
events { use epoll; worker_connections 1024; }
备注:为什么除以4,一个用户使用一个浏览器,默认打开2个链接服务器,同时2个服务器需要向2个后端服务器tomcat发送2个请求(反向代理)
large_client_header_buffers 4 8k;
备注:4代表 4个区块,每个块8k
error_page
error_page 500 502 503 504 /50x.html;
location = /50x.html {
internal;
root errors/html;
}
备注:root 与alias 区别
root追加
errors/html/50x.html
alias替换
标签:bsp event erro 9.png span buffer 使用 col png
原文地址:https://www.cnblogs.com/likevin/p/10322581.html