客户反响:说自己的网站走nginx代理后,打开空缺。直接IP加地址访问是好的(http://ip:port)
故障排查:
1、打开chrome浏览器,访问了下,访问情形真是客户描述的那样。
2、觉得打开chrome ,开拓者工具,创造部分要求URL是404,css和js的
3、找客户要做事器登录的账号,检讨nginx配置文件
upstream www.test.com{ server 127.0.0.1:8080;}server { listen 80; listen 443 ssl http2; ssl_certificate /usr/local/nginx/conf/ssl/www.test.com.pem; ssl_certificate_key /usr/local/nginx/conf/ssl/www.test.com.key; server_name www.test.com; access_log /data/wwwlogs/www.test.com_nginx.log combined; index index.html index.htm index.jsp; root /data/wwwroot/www.test.com; location ~ .\.(js|css)?$ { expires 7d; access_log off; } location / { proxy_pass http://www.test.com; include proxy.conf; }}
4、大家有创造上面配置有问题不?刚开始我也没有把稳,自认为配置文件是对 的。
打算检讨nginx的日志,一遍要求URL,一遍查看nginx果真还是404.(觉得迷惑),明明配置了proxy_pass http://www.test.com。
故障缘故原由:
是由于 “location ~ .\.(js|css)?$” 这个匹配拦截掉了,要求不能正常发往下一个“location /” ,也就不能正常抵达后端proxy_pass了。
办理方法:
第一种办理方法:是将后真个静态文件(css 和js ),放入前置nginx 机器/data/wwwroot/www.test.com
第二种办理方法 :修正配置文件
upstream www.test.com{ server 127.0.0.1:8080;}server { listen 80; listen 443 ssl http2; ssl_certificate /usr/local/nginx/conf/ssl/www.test.com.pem; ssl_certificate_key /usr/local/nginx/conf/ssl/www.test.com.key; server_name www.test.com; access_log /data/wwwlogs/www.test.com_nginx.log combined; index index.html index.htm index.jsp; root /data/wwwroot/www.test.com; location ~ .\.(js|css)?$ { proxy_pass http://www.test.com; expires 7d; access_log off; } location / { proxy_pass http://www.test.com; include proxy.conf; }}