每次醒来 发表于 2023-6-14 20:05:16

nginx1.24.0配置文件报错!


搬家发现原来的配置文件报错 报错行如下
listen 443 ssl http2;
Reload nginx... nginx: protocol options redefined for 0.0.0.0:443

就是默认新建站点 添加主机 也一样会报错!












nginx version: nginx/1.24.0

每次醒来 发表于 2023-6-14 20:21:01

本帖最后由 每次醒来 于 2023-6-14 20:22 编辑


Reload nginx... nginx: protocol options redefined for 0.0.0.0:443 in /usr/local/nginx/conf/vhost/www.123.net.conf:44
done

server
    {
      listen 80;
      #listen [::]:80;
      server_name www.123.net 123.net;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/www.123.net;

      #include rewrite/none.conf;
      #error_page   404   /404.html;

      # Deny access to PHP files in specific directory
      #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

      include enable-php.conf;

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
      }

      location ~ /.well-known {
            allow all;
      }

      location ~ /\.
      {
            deny all;
      }

      location / {
            return 301 https://123.net$request_uri;
      }

      access_log off;
    }
server
    {
      listen 443 ssl http2;
      #listen [::]:443 ssl http2;
      server_name www.123.net 123.net;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/www.123.net;

      ssl_certificate /usr/local/nginx/conf/ssl/www.123.net/fullchain.cer;
      ssl_certificate_key /usr/local/nginx/conf/ssl/www.123.net/www.123.net.key;
      ssl_session_timeout 5m;
      ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
      ssl_prefer_server_ciphers on;
      ssl_ciphers "TLS13-AES-256-GCM-SHA384:TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES-128-GCM-SHA256:TLS13-AES-128-CCM-8-SHA256:TLS13-AES-128-CCM-SHA256:EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
      ssl_session_cache builtin:1000 shared:SSL:10m;
      # openssl dhparam -out /usr/local/nginx/conf/ssl/dhparam.pem 2048
      ssl_dhparam /usr/local/nginx/conf/ssl/dhparam.pem;

      include rewrite/typecho.conf;
      #error_page   404   /404.html;

      # Deny access to PHP files in specific directory
      #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

      include enable-php.conf;

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
      }

      location ~ /.well-known {
            allow all;
      }

      location ~ /\.
      {
            deny all;
      }

      access_log off;
    }


licess 发表于 2023-6-15 18:42:13

设置了空主机头是吧?可以看一下空主机头帖子里面有说明

每次醒来 发表于 2023-6-15 20:45:57

licess 发表于 2023-6-15 18:42
设置了空主机头是吧?可以看一下空主机头帖子里面有说明

奇怪修改成 listen 443 ssl http2 default_server reuseport; 也不行
其它虚拟主机配置文件一样也不报错:L
页: [1]
查看完整版本: nginx1.24.0配置文件报错!