gpt4 book ai didi

node.js - nodejs 应用程序工作,但 nginx 代理没有捕捉到它

转载 作者:行者123 更新时间:2023-12-04 19:39:48 24 4
gpt4 key购买 nike

我在我的服务器上运行了一个 Nodejs 应用程序,所以我想使用 Nginx 反向代理来从一个不错的域名调用 API,而不是输入 IP 和端口,我还生成了一个免费的让我们加密证书来使用它。
问题是,如果我使用 IP 和端口,反向服务器不起作用,那么如果我使用域名它就可以工作,它给了我一个 Nginx 模板测试页面无论如何这里是我的配置:

Nginx confighttp {log_format main '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;

include /etc/nginx/mime.types;
#include /etc/nginx/sites-enabled/*;
default_type application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;

# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;

location / {
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

my reverse proxy config and location


/etc/nginx/conf.d/api1.conf
后端 API
服务器 {
server_name api.domain.com;
location / {
proxy_pass http://localhost:26423/all; #whatever port your app runs on
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
enter image description here
每当我尝试从浏览器或 postman 查看 API 时,我都会得到这个页面

最佳答案

目前尚不清楚您是否有域。如果你有一个,它应该指向服务器的公共(public) ipv4 ip,然后创建一个代理到你的 nodejs 应用程序的 nginx 虚拟主机。
假设您的公共(public)服务器 ipv4 ip 地址是 1.2.3.4,并且您有一个类似 nodejsappdomain.com 的域,那么 nodejsappdomain.com 应该指向 1.2.3.4,而 nginx vhost 将是这样的:
服务器 {
听 80;

server_name nodejsappdomain.com www.nodejsappdomain.com;

location / {
proxy_pass http://127.0.0.1:nodejsapp_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}

关于node.js - nodejs 应用程序工作,但 nginx 代理没有捕捉到它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69786291/

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