|
[root@web57 ~]# more /usr/local/nginx/conf/nginx.conf
user www
www;
worker_processes
6;
worker_rlimit_nofile 51200;
events {
use epoll;
#use
kqueue; #FreeBSD system
worker_connections 51200;
}
http {
include
mime.types;
default_type
application/octet-stream;
#charset
gb2312;
server_names_hash_bucket_size 256;
client_header_buffer_size 256k;
large_client_header_buffers 4 256k;
client_max_body_size 500m;
…………………………………………省略若干…………………………………
include vhosts/faxian.quanzhen.com.conf;
include vhosts/www.quanzhen.com.conf;
include vhosts/news.quanzhen.com.conf;
include vhosts/s.quanzhen.com.conf;
include vhosts/down.quanzhen.com.conf;
include vhosts/static.quanzhen.com.conf;
include vhosts/image.quanzhen.com.conf;
include vhosts/3g.quanzhen.com.conf;
include vhosts/mini.quanzhen.com.conf;
include vhosts/xml.quanzhen.com.conf;
include vhosts/mayiapi.quanzhen.com.conf;
include vhosts/www.android77.com.conf;
include vhosts/fahongbao.android77.com.conf;
include vhosts/update.android77.com.conf;
include vhosts/dev.quanzhen.com.conf;
include vhosts/qr.110.cc.conf;
include vhosts/110.cc.conf;
include vhosts/eggserver.quanzhen.com.conf;
include vhosts/apkegg.quanzhen.com.conf;
include vhosts/eggserver.yidong7.cn.conf;
include vhosts/www.yidong7.cn.conf;
include vhosts/down.yidong7.cn.conf;
include vhosts/wan.quanzhen.com.conf;
include vhosts/open.quanzhen.com.conf;
include vhosts/bakdown.yidong7.cn.conf ;
include vhosts/hanhua.quanzhen.com.conf;
include vhosts/mpk.quanzhen.com.conf;
include vhosts/android.quanzhen.com.conf;
include vhosts/pay.quanzhen.com.conf;
include vhosts/cmstop.quanzhen.cn.conf;
include vhosts/news.quanzhen.cn.conf;
include vhosts/pingce.quanzhen.cn.conf;
include vhosts/gonglue.quanzhen.cn.conf;
include vhosts/hao.quanzhen.cn.conf;
include vhosts/all.quanzhen.cn.conf;
include vhosts/s.quanzhen.cn.conf;
include vhosts/apkz.quanzhen.com.conf;
include vhosts/ajax.quanzhen.com.conf;
include vhosts/union.quanzhen.com.conf;
include vhosts/mai.quanzhen.com.conf;
include vhosts/blog.quanzhen.com.conf;
include vhosts/guazi.quanzhen.com.conf;
include vhosts/lockscreen.yidong7.cn.conf;
include vhosts/dsp.pujia8.com.conf;
include vhosts/3svx4haii9.quanzhen.com.conf;
include vhosts/u.quanzhen.com.conf;
include vhosts/bianji.quanzhen.com.conf;
include vhosts/default.conf;
}
|