gpt4 book ai didi

nginx - nginx 位置和 proxy_pass 问题

转载 作者:行者123 更新时间:2023-12-03 08:51:40 27 4
gpt4 key购买 nike

我的 nginx.conf 中有一条不起作用的规则,我不知道为什么。根据文档它应该可以工作。部分配置如下所示。

端口 8100 上的第一条规则起作用并重定向调用 http://example.com/api/domains https://localhost:8181/oan/resources/domains

# Working
server {
listen 8100 default_server;
server_name example.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
root /var/www/html/example;

location /api {
proxy_pass https://localhost:8181/oan/resources; break;
}

# For ReactJS to handle routes
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ / break;
}
}
}

# Not working
server {
listen 8200;
server_name api.example.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;

location / {
proxy_pass https://localhost:8181/oan/resources; break;
}
}

最后一次调用端口 8200: http://api.example.com:8200/domains 应重定向至: https://localhost:8181/oan/resources/domains 但不这样做。

此配置有什么问题,如何让端口 8200 上的最后一条规则执行正确的操作,始终重定向到 https://localhost:8181/oan/resources/ $uri

最佳答案

当您在前缀位置 block 中使用带有可选URIproxy_pass时,Nginx将通过执行直接文本替换来转换请求的URI .

在您的情况下,前缀位置值为 /,可选 URI 值为 /oan/resources。因此请求的 URI /foo 将被转换为 /oan/resourcesfoo

为了正确操作,两个值都应以 / 结尾,或者都不以 / 结尾。

例如:

location / {
proxy_pass https://localhost:8181/oan/resources/;
}

参见this document了解详情。

关于nginx - nginx 位置和 proxy_pass 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58609618/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com