SSL с облаком и ошибкой дрожания рук и 400 - PullRequest
0 голосов
/ 02 марта 2020

я пытаюсь использовать ssl для моего сайта, но с 2-мя конфигурациями я получаю 2 разные ошибки, которые я пишу ниже:

server {
        listen 443 default_server;
        listen [::]:443 default_server;
 ssl        on;
    ssl_certificate         /etc/ssl/certs/cert.pem;
    ssl_certificate_key     /etc/ssl/private/key.pem;
    ssl_client_certificate /etc/ssl/certs/cloudflare.crt;
    ssl_verify_client on;
        root /home/wordpress2/wordpress;
        index index.php index.html index.htm index.nginx-debian.html;
        server_name fbadiee.ir www.fbadiee.ir;
        return 302 https://$server_name$request_uri;

          location / {
                try_files $uri $uri/ /index.php?q=$uri&$args;
    }
        location ~ \.php$ {
  try_files $uri $uri/ /index.php?q=$uri&$args;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                fastcgi_pass unix:/run/php/php7.3-fpm.sock;
      }

    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }
   location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
        expires max;
        log_not_found off;
    }
    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    location /phpmyadmin {
    root /usr/share/;
    index index.php index.html index.htm;
    location ~ ^/phpmyadmin/(.+\.php)$ {
        try_files $uri =404;
        root /usr/share/;
        fastcgi_pass unix:/run/php/php7.2-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include /etc/nginx/fastcgi_params;
    }
server {
        listen 443 default_server;
        listen [::]:443 default_server;
 ssl        on;
    ssl_certificate         /etc/ssl/certs/cert.pem;
    ssl_certificate_key     /etc/ssl/private/key.pem;
    ssl_client_certificate /etc/ssl/certs/cloudflare.crt;
    ssl_verify_client on;
        root /home/wordpress2/wordpress;
        index index.php index.html index.htm index.nginx-debian.html;
        server_name fbadiee.ir www.fbadiee.ir;
        return 302 https://$server_name$request_uri;

          location / {
                try_files $uri $uri/ /index.php?q=$uri&$args;
    }
        location ~ \.php$ {
  try_files $uri $uri/ /index.php?q=$uri&$args;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                fastcgi_pass unix:/run/php/php7.3-fpm.sock;
      }

    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }
   location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
        expires max;
        log_not_found off;
    }
    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    location /phpmyadmin {
    root /usr/share/;
    index index.php index.html index.htm;
    location ~ ^/phpmyadmin/(.+\.php)$ {
        try_files $uri =404;
        root /usr/share/;
        fastcgi_pass unix:/run/php/php7.2-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include /etc/nginx/fastcgi_params;
    }

    location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
        root /usr/share/;
    }
}
}

с этой конфигурацией я получаю 400 ошибок на моем сайте, как показано ниже:

400 Bad Request
No required SSL certificate was sent
nginx/1.14.0 (Ubuntu)

и с конфигурацией secound, как показано ниже:

server {

    # SSL configuration

    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    ssl        on;
    ssl_certificate         /etc/ssl/certs/cert.pem;
    ssl_certificate_key     /etc/ssl/private/key.pem;
    ssl_client_certificate /etc/ssl/certs/cloudflare.crt;

    server_name example.com www.example.com;

    root /var/www/example.com/html;
    index index.html index.htm index.nginx-debian.html;


    location / {
            try_files $uri $uri/ =404;
    }
}

и с вышеуказанным конфигом, я получаю нижнюю ошибку:

Error 525 Ray ID: 56dc1508edf2d208 • 2020-03-02 15:17:01 UTC
SSL handshake failed

любая идея, как я могу Конфиг это, чтобы мой сайт работал на cloudflare ssl ?? и еще одна вещь, что я вставил сертификат и ключ в каталог, который вставляется в конфигурации

...