python - tornadoweb 的配置失败 nginx 设置,未知指令 "user"

标签 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

我在谷歌上搜索过,但还是一无所获 请帮忙

这是我在现场可用的 Tornado

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;
        }
    }

}

最佳答案

可能有点过期了,但如果有人偶然发现了这个,这里有一个提示:

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

关于python - tornadoweb 的配置失败 nginx 设置,未知指令 "user",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5751455/

相关文章:

python - 更新实时 Django Web 应用程序的正确方法

linux - Ubuntu 中命令 "ls -la"输出中的问号

python - Python 函数的问题

python - Celery 为每个任务创建一个新连接

python - 将 Setuptools 与 C 扩展一起用作包的一部分

python - 如何在遗留 Flask 应用程序中实现个性化 URL?

python - Django、uwsgi 和 nginx - 内部服务器错误

amazon-web-services - Docker Elastic Beanstalk ELB忽略.ebextesnions

docker - 如何自动停止docker容器?

Python:相对导入意味着你不能自己执行一个子包吗?