本节内容:
nginx中配置动静分离
首先,安装nginx:
主配置文件nginx.conf
nginx的主目录/usr/share/nginx/html
默认主页index.html index.htm;
在logformat下面添加:
upstream nginx{
server 192.168.1.27:80;
}
upstream tomcat{
server 192.168.1.25:8080;
}
location / {
if( $request_uri ~* ".*.html$"){
proxy_pass http://nginx;
}
proxy_pass http://tomcat;
}
注意:
与ldirector整合时,验证的网页也要写一个。