-
nginx 配置求助
2016-04-07 16:45location ~* \.(html|htm|gif||jpe|jpg|jpeg|bmp|png|ico|txt|js|css|ttf|woff)$ { root /usr/www/static; expires 7d; }
这是我的配置,放在 location /前面了
-
nginx 配置求助
2016-04-07 16:25location / { proxy_pass http://localhost:8080; index index.html index.htm; } #配置Nginx动静分离,定义的静态页面直接从Nginx发布目录读取。 location ~ .*\.(html|htm|gif||jpe|jpg|jpeg|bmp|png|ico|txt|js|css|ttf|woff)$ { root /usr/www/static; expires 7d; }
我这样配置的,静态文件还是走了 servlet 容器了
-
nginx 配置求助
2016-04-07 16:08@88250 那在配置个
location / {
proxy_pass http://localhost:8080;
index index.html index.htm;
}这样好像都转发到 tomcat 了