Nginx:如何将 http://my_ipaddress 转发到 http://my_ipaddress:8001/v1/offer/1

Nginx:如何将 http://my_ipaddress 转发到 http://my_ipaddress:8001/v1/offer/1

我是 nginx 新手,无法在我的 RHEL7.2 中配置 nginx。下面是我在 /etc/nginx/conf.d/ 中的 default.conf。我想将 mydomain/v1/offer/1 转发到 mydomain:8001/v1/offer/1

server {
    listen        80;
    server_name octest.omniconnect.net;

    location ~ /(.*) {
        proxy_pass  http://localhost:8001;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_redirect http://localhost:8001/ $scheme://$host:80;
    }
}

当我尝试使用邮递员时,出现错误。请帮我修复错误。谢谢。

相关内容