1. 程式人生 > >在nginx環境下,直接用域名訪問(首頁)

在nginx環境下,直接用域名訪問(首頁)

 

①:

 

 

server {
listen 80;
server_name www.njm1.com;

location = / {    #=/規則可以直接訪問域名。如:www.njm1.com。跳轉到http://192.168.177.132:8080/njm1/test1/index_html;
proxy_pass http://192.168.177.132:8080/njm1/test1/index_html;
}

location ~ .*\.(js|css.jpg.png)?$  #靜態檔案配置。必須要加,不然找不到你tomcat的靜態檔案。如下的proxy_pass http://192.168.177.132:8080;就是轉到了tomcat,然後才能正常載入你的靜態檔案
{
proxy_pass http://192.168.177.132:8080;
}

#負載均衡
location /njm1/test1/ {
proxy_pass http://tomcats;
}
}

 

②:springmvc 如下(加了/njm1/test1/這個字首)

 

html檔案如下:(加了/njm1/test1/這個字首)