nginx转发http请求

2022-11-02 16:09:22 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

原路径: http://source.server.com/callback/test/test?username=xx 转发到:http://10.1.9.1:8088/callback/test/test?username=xx

配置如下:

代码语言:javascript复制
server {
        listen       80;
        server_name source.server.com;

       # 匹配callback
        location /callback/ {
            proxy_pass http://10.1.9.1:8088;
        }

		# 默认其他
        location / {
           proxy_pass http://10.2.2.1:8088;
           # root   html;
           # index  index.html index.htm;
        }
		
		}

注意:在配置中http://10.1.9.1:8088,后面不用加任何目录,/callback/test/test,这一串都不需要加,/ 符号也不需要, 这是因为proxy_pass参数中如果不包含url的路径,则会将location的pattern识别的路径作为绝对路径。 重启: ./nginx -s reload

参考:https://www.php.cn/nginx/425693.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/180207.html原文链接:https://javaforall.cn

0 人点赞