修改nginx的配置css
這裏主要是將restful模式的接口和其餘的靜態文件區分開來,根據須要設定緩存時間,html
其中proxy_pass參數指定的是restful接口的轉接地址,也就是tomcat的地址nginx
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { root /var/local/www; expires 15d; } location ~ .*\.(js|css|html)?$ { root /var/local/www; expires 1h; } location / { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://127.0.0.1:8080; }