配置失败nginx设置tornadoweb,未知指令“用户”

时间:2011-04-22 01:21:39

标签: python nginx

我在nginx版本1.0.0中遇到此错误

nginx: [emerg] unknown directive "user" in /etc/nginx/sites-enabled/
tornado:1

如果我删除用户www-data,则工作进程出错

nginx: [emerg] unknown directive "worker_processes" in /etc/nginx/
sites-enabled/tornado:1

我在google上搜索但仍然没有得到任何结果 请帮忙

这是我在网站上的龙卷风

user www-data www-data;
worker_processes 1;

error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

events {
    worker_connections 1024;
    use epoll;

}

http {
    # Enumerate all the Tornado servers here
    upstream frontends {
        server 127.0.0.1:8081;
        server 127.0.0.1:8082;
        server 127.0.0.1:8083;
        server 127.0.0.1:8084;
    }

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

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

    keepalive_timeout 65;
    proxy_read_timeout 200;
    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    gzip on;
    gzip_min_length 1000;
    gzip_proxied any;
    gzip_types text/plain text/html text/css text/xml
               application/x-javascript application/xml
               application/atom+xml text/javascript;

    # Only retry if there was a communication error, not a timeout
    # on the Tornado server (to avoid propagating "queries of death"
    # to all frontends)
    proxy_next_upstream error;

    server {
        listen 8080;

        # Allow file uploads
        client_max_body_size 50M;

        location ^~ /static/ {
            root /var/www;
            if ($query_string) {
                expires max;
            }
        }
        location = /favicon.ico {
            rewrite (.*) /static/favicon.ico;
        }
        location = /robots.txt {
            rewrite (.*) /static/robots.txt;
        }

        location / {
            proxy_pass_header Server;
            proxy_set_header Host $http_host;
            proxy_redirect false;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Scheme $scheme;
            proxy_pass http://frontends;
        }
    }

}

7 个答案:

答案 0 :(得分:16)

可能有点过期了,但是如果有人在这里发现这是一个暗示:

可能是配置冲突,请在/ etc / nginx中检查具有相同指令的.conf文件。

答案 1 :(得分:4)

另外值得一试的是,nginx.conf是否有“include”行。它很常见,是碰撞的来源。

例如。

evan@host:~/$ cat /etc/nginx/nginx.conf | grep include
 include /etc/nginx/mime.types;
 include /etc/nginx/conf.d/.conf;
 include /etc/nginx/sites-enabled/;

在这种情况下,/ etc / nginx / sites-enabled /中的指令将与nginx.conf的内容冲突。确保不要对所包含文件之间的任何内容加倍。

答案 2 :(得分:1)

只想详细说明Kjetil M.的答案,因为这对我有用,但我没有立即得到他的意思。直到经过多次尝试后我才解决问题并且有一个“哦,这就是他的意思”妈妈。

如果你的/etc/nginx/nginx.conf文件和其他一个配置文件/ etc / nginx / sites-enabled /使用相同的指令,如“user”,你将遇到这个错误。只需确保只有1个版本处于活动状态并注释掉其他版本。

答案 3 :(得分:0)

worker_ *指令必须位于配置的顶部,这意味着必须位于/etc/nginx/nginx.conf

示例: 我的第一条线是:

user www-data;
worker_processes 4;
worker_connections 1024;

如果您想知道服务器最适合的工作人数,可以运行此命令:

grep processor /proc/cpuinfo | wc -l

这告诉你你有多少核心,拥有比网络核心更多的工作者是没有意义的。

如果您想知道您的员工可以处理多少个连接,您可以使用:

ulimit -n

希望它有所帮助。

答案 4 :(得分:0)

我遇到了同样的错误,但是当我使用-c选项启动nginx

nginx -c conf.d / myapp.conf

它工作正常

答案 5 :(得分:0)

另一件事,如果你在Windows上创建配置文件并在Linux上使用,请确保行结尾是正确的(“\ r \ n”与“\ r”相比)并且文件不是存储为unicode。

答案 6 :(得分:0)

就我而言,错误消息似乎显示user之前的空格,即使那里没有空格:

nginx: [emerg] unknown directive " user" in /etc/nginx/nginx.conf:1

证明我的两个.conf文件在文件的开头有一个BOM。删除BOM可以解决此问题。