株式会社ヴァンデミックシステム

Blog

<スポンサーリンク>

このようなメッセージ

[root@localhost nginx]# nginx -t
nginx: [emerg] SSL_CTX_set_cipher_list("PROFILE=SYSTEM") failed (SSL: error:1410D0B9:SSL routines:SSL_CTX_set_cipher_list:no cipher match)
nginx: configuration file /etc/nginx/nginx.conf test failed

「ssl_ciphers PROFILE=SYSTEM;」を消すと起動する

    # NextCloud
    server {
        listen       443 ssl http2;
        listen       [::]:443 ssl http2;
        server_name  nextcloud.vamdemic.net;
        root         /usr/share/nginx/html;
        ssl_certificate     "/etc/nginx/cert/nextcloud.g-service.net/server.crt";
        ssl_certificate_key "/etc/nginx/cert/nextcloud.g-service.net/server.key";
        ssl_session_cache shared:SSL:1m;
        ssl_session_timeout  10m;
        ssl_prefer_server_ciphers on;
        #ssl_ciphers PROFILE=SYSTEM;
        client_max_body_size 51200m; #

CentOS8のNginxで作っていたが例のサポート切れのあれで、CentOS7へ戻したら発生。

<スポンサーリンク>

コメントを残す

Allowed tags:  you may use these HTML tags and attributes: <a href="">, <strong>, <em>, <h1>, <h2>, <h3>
Please note:  all comments go through moderation.

*

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)