worker_processes8;
events {
use epoll;
worker_connections1024;
}
http {
includemime.types;
default_typeapplication/octet-stream;
sendfileon;
keepalive_timeout65;
gzipon;
upstream tomcats{
server 127.0.0.1:8080;}
server {
listen80 default_server;
server_nametest.tiao.xxx.com;
#拜访/ROOT/下的static中的静态文件
location ^~ /static/{
root/usr/local/tomcat/webapps/ROOT/;
}
location / {
#动态程序丢给后端tomcat处理方
proxy_passhttp://tomcats;
}
error_page500 502 503 504/50x.html;
location = /50x.html {
roothtml;
}
}
#网站静态资源交给后端CDN处理
server {
listen80;
server_name static.test.tiao.xxx.com;
location / {
root/usr/local/tomcat/webapps/ROOT/static/;
}
error_page500 502 503 504/50x.html;
location = /50x.html {
roothtml;
}
}
}