将 nginx 设置为 kestrel 的代理服务器(ASP.Net Core)

将 nginx 设置为 kestrel 的代理服务器(ASP.Net Core)

我正在尝试设置一个 ASP.NET Core 环境来托管我的应用程序,但我在使用 nginx web 服务器时遇到了问题。当我尝试连接到我的域时,我得到了502 Bad Gateway。Nginx 应该只作为 kestrel 的代理服务器运行。

这里这是我正在遵循的指南的链接。配置基本上是微软建议的配置,我只是更改了每个环境不同的变量。

有问题的行位于http://aspdotnethost;nginx.conf 配置的末尾。当我将其注释掉时,我会被重定向到默认的 www 位置。

那么该线路实际上是如何工作的以及如何管理它以正确重定向到 localhost:5000 ?

/etc/nginx/proxy.conf

proxy_redirect          off;
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;
client_max_body_size    10m;
client_body_buffer_size 128k;
proxy_connect_timeout   90;
proxy_send_timeout      90;
proxy_read_timeout      90;
proxy_buffers           32 4k;

/etc/nginx/nginx.conf

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    include    /etc/nginx/proxy.conf;
    limit_req_zone $binary_remote_addr zone=one:10m rate=5r/s;
    server_tokens off;

    sendfile on;
    keepalive_timeout 29; # Adjust to the lowest possible value that makes sense for your use case.
    client_body_timeout 10; client_header_timeout 10; send_timeout 10;

    upstream aspdotnethost {
        server localhost:5000;
    }

    server {
        listen *:80;
        add_header Strict-Transport-Security max-age=15768000;
        return 301 https://$host$request_uri;
    }

    server {
        listen *:443    ssl;
        server_name     example.com *.example.com;

        #Redirects all traffic
        location / {
            proxy_pass  http://aspdotnethost;
            limit_req   zone=one burst=10;
        }
    }

}

Nginx 配置检查:

[root@rs-zap353479-1 patrick]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

当我输入时curl http://localhost:5000,我得到了返回的 html 文档。所以在我看来应该可以找到该组件。

答案1

就像 Eugen Rieck 发表的评论一样,我必须添加一个别名/etc/hosts

作为附加步骤,我必须proxy_temp_path在中指定proxy.conf,创建该路径并将其 chown 给在其下运行 nginx 的用户(在我的情况下nginx)。

相关内容