【问题标题】:nginx: [emerg] invalid number of arguments in "ssl" directive in /etc/nginx/nginx.conf:70nginx:[emerg] /etc/nginx/nginx.conf:70 中“ssl”指令中的参数数量无效
【发布时间】:2018-07-20 01:34:41
【问题描述】:

尝试启动我的 nginx 服务器时出现以下错误。我能够将服务器配置为侦听端口 80,并代理到另一个地址,但现在我正在尝试对其进行配置,以便服务器在分配证书的情况下侦听 443。

nginx: [emerg] invalid number of arguments in "ssl" directive in /etc/nginx/nginx.conf:70 

这是我的 nginx.conf 文件

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
        worker_connections 768;
        # 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 /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        # 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
        ##
        server {
        listen          443 ssl;
        server_name     localhost;


        ssl certificate         /etc/nginx/keys/example.com.pem;
        ssl certificate_key     /etc/nginx/keys/example.com.key;

        location / {
                 proxy_pass http://xxx.xxx.xxx.xxx:80;
        }
}

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

有什么想法吗?我从 Cloudflare 收到了证书。

【问题讨论】:

    标签: ssl nginx reverse-proxy


    【解决方案1】:

    应该有下划线ssl_:

     ssl_certificate         /etc/nginx/keys/example.com.pem;
     ssl_certificate_key     /etc/nginx/keys/example.com.key;
    

    【讨论】:

      猜你喜欢
      • 2021-08-30
      • 2014-01-16
      • 2020-02-09
      • 1970-01-01
      • 1970-01-01
      • 2021-06-26
      • 1970-01-01
      • 2011-07-15
      • 2020-03-30
      相关资源
      最近更新 更多