摘要: Nginx rewrite 的last、break、redirect、permanent有四种模式: last和break 都会跳转的rewrite的地址,区别是: last跳转后,会重新发起请求再匹配一次location,而break则只进行跳转,不再重新请求。 当rewrite后的地址是一个直接 阅读全文
posted @ 2022-10-15 14:52 全玉 阅读(3382) 评论(0) 推荐(0) 编辑
摘要: 1. 默认server增加location # 第一个站点配置 location / { root /data/apps/a; index index.html index.htm; } # 部署的后端访问地址和端口号 location /a-api/ { proxy_pass http://127 阅读全文
posted @ 2022-10-15 14:20 全玉 阅读(2636) 评论(0) 推荐(1) 编辑
摘要: 1. proxy_pass代理 1.1 location和proxy_pass后面的/必须保留 1.2 proxy_pass后面的http://必须带上,不带会报404 server { location /a/ { proxy_pass http://www.baidu.com/; } locat 阅读全文
posted @ 2022-10-15 14:17 全玉 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1. 查找nginx which nginx 输出 /usr/local/bin/nginx 2. 查找nginx配置文件 /usr/local/bin/nginx -t #检测配置是否正确,同时可以输出配置文件路径 输出: nginx: the configuration file /usr/lo 阅读全文
posted @ 2022-10-15 13:40 全玉 阅读(822) 评论(0) 推荐(0) 编辑