比较nginx和Tomcat处理静态资源能力
机器
192.168.64.135(安装nginx)
192.168.64.140(安装Tomcat)
<!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>
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
浏览器测试
/usr/local/tomcat/tomcat8080/webapps/ROOT
下有文件index.jsp 目录images
<!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>
katong.jpeg shu.jpeg (你换成你的图片文件)
浏览器测试
135 140安装yum install -y httpd-tools 用法等百度一下
135 140 都是静态资源 内容一样 测试nginx和Tomcat处理静态资源能力
ab -n 10000 -c 200 http://192.168.64.140:8080/
nginx处理静态资源强于Tomcat处理静态资源能力