Nginx配置与应用场景
最小配置worker_processesworker_processes 1; 默认为1,表示开启一个业务进程worker_connectionsworker_connections 1024; 单个业务进程可接受连接数include mime.typesinclude mime.types; 引入http mime类型default_type application/octet-streamdefault_type application/octet-stream; 如果mime类型没匹配上,默认使用二进制流的方式传输sendfile onsendfile on; 使用linux的 sendfile(socket, file, len) 高效网络传输,也就是数据0拷贝。 未开启sendfile开启后keepalive_timeout 65;server虚拟主...