nginx"邮件"&“流"在启用站点的/中不允许使用指令 [英] nginx "mail" & "stream" directive is not allowed in site-enabled/

查看:63
本文介绍了nginx"邮件"&“流"在启用站点的/中不允许使用指令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试在 nginx 中使用流或邮件指令时遇到问题.我正在使用 nginx/1.16.1 &Ubuntu 18.04.4 LTS.
这是我的 nginx.conf

I have a problem when I try to use the stream or mail directive with nginx. I'm using nginx/1.16.1 & Ubuntu 18.04.4 LTS.
This is my nginx.conf

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 1200;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

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

    server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log off;
                    #/var/log/nginx/access.log;
    error_log /var/log/nginx/error_website.log;
    ##
    # Gzip Settings
    ##

    gzip on;

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.websiteconf;
    include /etc/nginx/sites-enabled/*.websiteconf;
}

并且我想在我的站点配置之一 (test.streamconf) 中使用stream"指令

And I want to use the "stream" directive in one of my site configs (test.streamconf)

stream {
            server {
                    listen 500 udp;
                   proxy_pass test.com:500;
            }
            server {
                    listen 4500 udp;
                    proxy_pass test.com:4500;
            }
}

但是,如果我为启用了站点的文件夹创建符号链接并使用sudo nginx -t"测试我的配置,我会收到以下错误消息:

But if I create a symlink for the sites-enabled folder and test my configuration with "sudo nginx -t", I get the following error message:

nginx: [emerg] 此处不允许使用stream"指令/etc/nginx/sites-enabled/test.streamconf:1
nginx:配置文件/etc/nginx/nginx.conf 测试失败

nginx: [emerg] "stream" directive is not allowed here in /etc/nginx/sites-enabled/test.streamconf:1
nginx: configuration file /etc/nginx/nginx.conf test failed

流和邮件模块已经安装...

The stream and mail module is already installed...

我做错了什么?

推荐答案

好的,现在我明白了.nginx 加载嵌套的单个配置.
我现在已将以下所有 root 添加到 nginx.conf:

Okay, now I get it. nginx loads the individual configurations nested.
I have now added the following alls root to nginx.conf:

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 1200;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

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

    server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log off;
                    #/var/log/nginx/access.log;
    error_log /var/log/nginx/websiteerror.log;

    ##
    # Gzip Settings
    ##

    gzip on;

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml appl$

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.websiteconf;
    include /etc/nginx/sites-enabled/*.websiteconf;
}


stream {
    access_log off;
    error_log /var/log/nginx/streamerror.log;

    include /etc/nginx/conf.d/*.streamconf;
    include /etc/nginx/sites-enabled/*.streamconf;
}

我的流"配置文件现在看起来像这样(我认为我也必须从这里开始流")...

And my "stream" config file now looks like this (I thought that I have to start with "stream" here too)...

server {
    listen  [::]:4500 ipv6only=off;
    listen  [::]:500 ipv6only=off;
    proxy_pass      server_name.com:$server_port;
    proxy_protocol  on;
}

这篇关于nginx"邮件"&“流"在启用站点的/中不允许使用指令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆