nginx 反向代理 UDP 流量(无效参数“udp”)

nginx 反向代理 UDP 流量(无效参数“udp”)

我正在尝试在 nginx 反向代理后面托管 Unifi 控制器。这很有效,只是我在使用 STUN 协议时遇到了麻烦。

我在 Ubuntu 20.04 上使用 nginx 1.18。当我检查 nginx 的已加载模块时,它列为--with-stream=dynamic可用,但当我尝试listen 3478 udp;在我的服务器块中使用:时,它失败并显示以下错误消息:

nginx: [emerg] invalid parameter "udp" in /etc/nginx/sites-enabled/stream_unifi.example.com:7

配置stream_unifi.example.com在上下文中加载stream

stream {
        include /etc/nginx/sites-enabled/stream_*;
}

我是否遗漏了什么或者我是否需要自己使用一些特殊标志来编译 nginx?

谢谢你!


完整输出:

root@server:/etc/nginx/modules-available# nginx -V
nginx version: nginx/1.18.0 (Ubuntu)
built with OpenSSL 1.1.1f  31 Mar 2020
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fdebug-prefix-map=/build/nginx-5J5hor/nginx-1.18.0=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -fPIC' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-compat --with-pcre-jit --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_v2_module --with-http_dav_module --with-http_slice_module --with-threads --with-http_addition_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic --with-http_sub_module --with-http_xslt_module=dynamic --with-stream=dynamic --with-stream_ssl_module --with-mail=dynamic --with-mail_ssl_module
root@server:/etc/nginx/modules-available# cat ../sites-available/stream_unifi.example.com
# Unifi STUN UDP Traffic
upstream unifi_stun {
        server 127.0.0.1:3478;
}

server {
    listen 3478 udp;
    include /etc/nginx/snippets/acmetool.conf;

    location / {
                proxy_pass https://unifi_stun;
        proxy_responses 0;
    }
}
root@server:/etc/nginx/modules-available# nginx -t
nginx: [emerg] invalid parameter "udp" in /etc/nginx/sites-enabled/stream_unifi.example.com:7
nginx: configuration file /etc/nginx/nginx.conf test failed
root@server:/etc/nginx/modules-available#

答案1

我的配置有几个错误,RichardSmith 给我指明了正确的方向。

nginx.conf有以下障碍:

http {
        [other configuration options]
        include /etc/nginx/sites-enabled/*;
}

stream {
        [other configuration options]
        include /etc/nginx/sites-enabled/*;
}
  1. 我将“流配置”从/etc/nginx/sites-available/stream_unifi.example.com符号链接到 。这导致此配置被上面显示的和块/etc/nginx/sites_enabled/stream_unifi.example.com拾取。修复方法是将 块中的包含更改为如下所示:httpstreamnginx.confstream
stream {
        include /etc/nginx/stream-sites-enabled/*;
}

然后创建此stream-sites-enabled目录并符号链接/etc/nginx/sites-available/stream_unifi.example.com到该目录。

  1. 流配置本身(stream_unifi.example.com)存在一些问题并且必须如下所示:
upstream unifi_stun {
        server 127.0.0.1:3478;
}

server {
    listen 3478 udp;
    proxy_pass unifi_stun;
    proxy_responses 0;
}

希望这对其他人也有帮助。

相关内容