比较nginx和Tomcat处理静态资源能力
机器
192.168.64.135(安装nginx)
192.168.64.140(安装Tomcat)
环境搭建
135机器
index.html页面
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1 style="color:blue">this is sb wrz 135 nginx</h1>
<img src="/images/katong.jpeg" height="200" width="200" />
<img src="/images/shu.jpeg" height="200" width="200" />
</body>
</html>
image目录文件
katong.jpeg shu.jpeg (你换成你的图片文件)
配置文件
/usr/local/nginx/conf/test/test.conf
server {
listen 85;
server_name 192.168.64.135;
location / {
root html;
try_files $uri $uri/ @java;
}
location @java {
proxy_pass http://192.168.64.140:8080;
}
}
主配置文件记得引用test.conf
include test/*.conf;
重启服务
./sbin/nginx -s reload
浏览器测试
140机器
/usr/local/tomcat/tomcat8080/webapps/ROOT
下有文件index.jsp 目录images
index.jsp页面
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
</head>
<body>
<h1 style="color:blue">this is sb wrz 140 tomcat</h1>
<img src="/images/katong.jpeg" height="200" width="200" />
<img src="/images/shu.jpeg" height="200" width="200" />
</body>
</html>
images目录文件
katong.jpeg shu.jpeg (你换成你的图片文件)
浏览器测试
压力测试
135 140安装yum install -y httpd-tools 用法等百度一下
135 140 都是静态资源 内容一样 测试nginx和Tomcat处理静态资源能力
140 Tomcat测试
ab -n 10000 -c 200 http://192.168.64.140:8080/
135nginx测试
结论
nginx处理静态资源强于Tomcat处理静态资源能力