2
我们的系统主要是提供大文件下载的,nginx对文件下载可以优化
location /video/ {
sendfile on;
aio threads;
}
使用aio threads,需要添加--with-threads配置
# ./configure --without-dso --without-http_autoindex_module --without-http_fastcgi_module --without-http_uwsgi_module --without-http_scgi_module --without-http_userid_module --without-http_footer_filter_module --without-http_upstream_dynamic_module --with-file-aio --with-http_sub_module --add-module=../echo-nginx-module-0.60/ --with-threads
执行后提示
./configure: error: invalid option "--with-threads"
linux内核版本为2.6.32-279.el6.x86_64