gpt4 book ai didi

proxy - nginx简单的proxy_pass到本地主机不起作用

转载 作者:行者123 更新时间:2023-12-03 09:08:56 24 4
gpt4 key购买 nike

我正在尝试运行一个极简的反向代理,并提出以下内容:

events {
worker_connections 4096;
}

http {
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:3000/;
}
}
}

`

但是,当我访问此服务器时,我得到标准的“欢迎使用 nginx 页面”,而不是来自运行在端口 3000 上的服务器的响应。

如果我 SSH 到机器并运行 curl http://127.0.0.1:3000/ ,我得到了想要的结果(最终我在端口 80 上运行该服务器并且它运行良好,所以我知道它与反向代理配置有关)。

最佳答案

我遇到了完全相同的问题。我刚刚在我的 nginx.conf 文件中注释了一行:

包括/etc/nginx/sites-enabled/*;

变成

#include/etc/nginx/sites-enabled/*;

关于proxy - nginx简单的proxy_pass到本地主机不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15335002/

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