404 not found nginx

Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. https://crt.sh/?q=example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.

My domain is: www.sunchemgroup.com

I ran this command: sudo -H ./certbot-auto certonly --standalone --email (an e-mail address) -d www.example.com -d example.com

It produced this output:

My web server is (include version): nginx

The operating system my web server runs on is (include version): centos6.5

My hosting provider, if applicable, is: linode

I can login to a root shell on my machine (yes or no, or I don’t know): yes

I’m using a control panel to manage my site (no, or provide the name and version of the control panel): no

I cannot log into the website now. The page shows that “404 not found/ nginx”. What should I do to solve the problem?

Is there a reason you’re using the standalone authenticator instead of the nginx plugin? Are you following a tutorial? I’d actually expect a different error about being unable to bind to a port, but what the error you’re seeing means is that Let’s Encrypt is reaching out to try and find the challenge file that Certbot is placin+on your server and failing, presumably because nginx is still running and completely unaware of it.

There is an IPv6 error as well.
See: https://www.ssllabs.com/ssltest/analyze.html?d=www.sunchemgroup.com&hideResults=on

The 404 seems to be affecting more than just his one site.
See: shsunchem.com

It seems to be affecting only the HTTPS side.
Since the HTTP are being redirected to HTTPS, they fail.

But this one doesn’t redirect and works just fine: http://blog.chemchain.com/
However, https://blog.chemchain.com/ also fails with 404 (and mismatched cert)

Exactly,I’m following a tutorial and I’m a beginner in this field. It seems that I have installed the certificate successfully but I cannot visit my website in the form of “https”. Is that right? Do I lose some files that important?

What does the IPv6 error mean? Is it a problem about the domain name resolution?

The domain names resolve to multiple IPs:

Name:    sunchemgroup.com
Addresses:  2400:8902::f03c:91ff:fe50:7ea4
          172.104.99.221
Name:    www.sunchemgroup.com
Addresses:  2400:8902::f03c:91ff:fe50:7ea4
          172.104.99.221

The IPv6 address seems to fail.
If you have control of the DNS, and you don’t need IPv6 connections, you could simply just delete the AAAA records.

The IPv6 issue is not related to the 404 error. Indeed @fordyy was able to get a certificate from LE even when is not answering requests to the IPv6 address, in this case because the firewall used is rejecting connections instead of dropping them so connection to the IPv6 address is not consuming the LE defined timeout so LE fall back to use IPv4 and that is the reason @fordyy got the cert ;).

For me seems a nginx conf issue, server block used to define ssl part doesn’t have a root directive or it has the wrong one… or…

@fordyy, could you please show the ouput of this command?

nginx -T

If the output is large you could paste it using some service like pastebin.com or if you can use nc (netcat) command, this should work from the command line:

nginx -T 2>&1 | nc termbin.com 9999

if you use the above command, you will receive an url, just paste that url here.

Cheers,
sahsanu

[root@cas123 ~]# nginx -T 2>&1 | nc termbin.com 9999
-bash: nc: command not found

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

# configuration file /usr/local/nginx/conf/nginx.conf:
user  www www;

worker_processes auto;

error_log  /home/wwwlogs/nginx_error.log  crit;

pid        /usr/local/nginx/logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;

events
    {
        use epoll;
        worker_connections 51200;
        multi_accept on;
    }

http
    {
        include       mime.types;
        default_type  application/octet-stream;

        server_names_hash_bucket_size 128;
        client_header_buffer_size 32k;
        large_client_header_buffers 4 32k;
        client_max_body_size 50m;

        sendfile   on;
        tcp_nopush on;

        keepalive_timeout 60;

        tcp_nodelay on;

        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
        fastcgi_buffer_size 64k;
        fastcgi_buffers 4 64k;
        fastcgi_busy_buffers_size 128k;
        fastcgi_temp_file_write_size 256k;

        gzip on;
        gzip_min_length  1k;
        gzip_buffers     4 16k;
        gzip_http_version 1.1;
        gzip_comp_level 2;
        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
        gzip_vary on;
        gzip_proxied   expired no-cache no-store private auth;
        gzip_disable   "MSIE [1-6]\.";

        #limit_conn_zone $binary_remote_addr zone=perip:10m;
        ##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.

        server_tokens off;
        access_log off;

server
    {
        listen 80 default_server;
        #listen [::]:80 default_server ipv6only=on;
        server_name _;
        index index.html index.htm index.php;
        root  /home/wwwroot/default;

        #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 /nginx_status
        {
            stub_status on;
            access_log   off;
        }

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

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

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

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/access.log;
    }
include vhost/*.conf;
}


# configuration file /usr/local/nginx/conf/mime.types:

types {
    text/html                             html htm shtml;
    text/css                              css;
    text/xml                              xml;
    image/gif                             gif;
    image/jpeg                            jpeg jpg;
    application/javascript                js;
    application/atom+xml                  atom;
    application/rss+xml                   rss;

    text/mathml                           mml;
    text/plain                            txt;
    text/vnd.sun.j2me.app-descriptor      jad;
    text/vnd.wap.wml                      wml;
    text/x-component                      htc;

    image/png                             png;
    image/tiff                            tif tiff;
    image/vnd.wap.wbmp                    wbmp;
    image/x-icon                          ico;
    image/x-jng                           jng;
    image/x-ms-bmp                        bmp;
    image/svg+xml                         svg svgz;
    image/webp                            webp;

    application/font-woff                 woff;
    application/java-archive              jar war ear;
    application/json                      json;
    application/mac-binhex40              hqx;
    application/msword                    doc;
    application/pdf                       pdf;
    application/postscript                ps eps ai;
    application/rtf                       rtf;
    application/vnd.apple.mpegurl         m3u8;
    application/vnd.ms-excel              xls;
    application/vnd.ms-fontobject         eot;
    application/vnd.ms-powerpoint         ppt;
    application/vnd.wap.wmlc              wmlc;
    application/vnd.google-earth.kml+xml  kml;
    application/vnd.google-earth.kmz      kmz;
    application/x-7z-compressed           7z;
    application/x-cocoa                   cco;
    application/x-java-archive-diff       jardiff;
    application/x-java-jnlp-file          jnlp;
    application/x-makeself                run;
    application/x-perl                    pl pm;
    application/x-pilot                   prc pdb;
    application/x-rar-compressed          rar;
    application/x-redhat-package-manager  rpm;
    application/x-sea                     sea;
    application/x-shockwave-flash         swf;
    application/x-stuffit                 sit;
    application/x-tcl                     tcl tk;
    application/x-x509-ca-cert            der pem crt;
    application/x-xpinstall               xpi;
    application/xhtml+xml                 xhtml;
    application/xspf+xml                  xspf;
    application/zip                       zip;

    application/octet-stream              bin exe dll;
    application/octet-stream              deb;
    application/octet-stream              dmg;
    application/octet-stream              iso img;
    application/octet-stream              msi msp msm;

    application/vnd.openxmlformats-officedocument.wordprocessingml.document    docx;
    application/vnd.openxmlformats-officedocument.spreadsheetml.sheet          xlsx;
    application/vnd.openxmlformats-officedocument.presentationml.presentation  pptx;

    audio/midi                            mid midi kar;
    audio/mpeg                            mp3;
    audio/ogg                             ogg;
    audio/x-m4a                           m4a;
    audio/x-realaudio                     ra;

    video/3gpp                            3gpp 3gp;
    video/mp2t                            ts;
    video/mp4                             mp4;
    video/mpeg                            mpeg mpg;
    video/quicktime                       mov;
    video/webm                            webm;
    video/x-flv                           flv;
    video/x-m4v                           m4v;
    video/x-mng                           mng;
    video/x-ms-asf                        asx asf;
    video/x-ms-wmv                        wmv;
    video/x-msvideo                       avi;
}

# configuration file /usr/local/nginx/conf/enable-php.conf:
        location ~ [^/]\.php(/|$)
        {
            try_files $uri =404;
            fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }
# configuration file /usr/local/nginx/conf/fastcgi.conf:

fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;

fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;
fastcgi_param  REQUEST_SCHEME     $scheme;
fastcgi_param  HTTPS              $https if_not_empty;

fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;

fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param  REDIRECT_STATUS    200;
fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/";

# configuration file /usr/local/nginx/conf/vhost/blog.chemchain.com.conf:
server
    {
        listen 80;
        #listen [::]:80;
        server_name blog.chemchain.com ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/blog.chemchain.com;

        include wordpress.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  /home/wwwlogs/blog.chemchain.com.log;
    }

# configuration file /usr/local/nginx/conf/wordpress.conf:
location / {
	try_files $uri $uri/ /index.php?$args;
}

# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
# configuration file /usr/local/nginx/conf/vhost/www.shsunchem.com.conf:
server
 {
 listen 80;
 #listen [::]:80;
 server_name www.shsunchem.com shsunchem.com;
 return 301 https://www.shsunchem.com$request_uri;
 }

server
 {
 listen 443 ssl http2;
 ssl_certificate /etc/letsencrypt/live/www.shsunchem.com/fullchain.pem;
 ssl_certificate_key /etc/letsencrypt/live/www.shsunchem.com/privkey.pem;
 # 注意检查上面证书的路径,live下的证书文件夹名是否含有www,如果没有,请在上面两行中删除 www.

 ssl_ciphers "EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
 ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
 ssl_prefer_server_ciphers on;
 ssl_session_cache shared:SSL:10m;

 # HSTS (ngx_http_headers_module is required) (31536000 seconds = 12 months)
 # add_header Strict-Transport-Security "max-age=31536000" always;

 # OCSP Stapling ---
 # fetch OCSP records from URL in ssl_certificate and cache them
 ssl_stapling on;
 ssl_stapling_verify on;

index index.html index.htm index.php default.html default.htm default.php;
 server_name www.shsunchem.com;
 root /home/wwwroot/www.shsunchem.com;

include wordpress.conf;
 #error_page 404 /404.html;
 include enable-php.conf;

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

location /wp-content/uploads/ {  
location ~ .*\.(php)?$ {  
deny all;  
} 
} 

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

location ~ /\.
 {
 deny all;
 }
 access_log off;
 }
# configuration file /usr/local/nginx/conf/vhost/www.sinocolour.com.conf:
server
    {
        listen 80;
        #listen [::]:80;
        server_name www.sinocolour.com ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/www.sinocolour.com;

        include wordpress.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  /home/wwwlogs/www.sinocolour.com.log;
    }

# configuration file /usr/local/nginx/conf/vhost/www.sunchemgroup.com.conf:
server
 {
 listen 80;
 #listen [::]:80;
 server_name www.sunchemgroup.com sunchemgroup.com;
 return 301 https://www.sunchemgroup.com$request_uri;
 }

server
 {
 listen 443 ssl http2;
 ssl_certificate /etc/letsencrypt/live/www.sunchemgroup.com/fullchain.pem;
 ssl_certificate_key /etc/letsencrypt/live/www.sunchemgroup.com/privkey.pem;
 # 注意检查上面证书的路径,live下的证书文件夹名是否含有www,如果没有,请在上面两行中删除 www.

 ssl_ciphers "EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
 ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
 ssl_prefer_server_ciphers on;
 ssl_session_cache shared:SSL:10m;

 # HSTS (ngx_http_headers_module is required) (31536000 seconds = 12 months)
 # add_header Strict-Transport-Security "max-age=31536000" always;

 # OCSP Stapling ---
 # fetch OCSP records from URL in ssl_certificate and cache them
 ssl_stapling on;
 ssl_stapling_verify on;

index index.html index.htm index.php default.html default.htm default.php;
 server_name www.sunchemgroup.com;
 root /home/wwwroot/www.sunchemgroup.com;

include wordpress.conf;
 #error_page 404 /404.html;
 include enable-php.conf;

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

location /wp-content/uploads/ {  
location ~ .*\.(php)?$ {  
deny all;  
} 
} 

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

location ~ /\.
 {
 deny all;
 }
 access_log off;
 }

What are these lines doing in the conf files?:

They translate to:
Pay attention to check the path of the above certificate. If the certificate folder under live contains www, if not, please delete www.

That said, please show:
ls -l /etc/letsencrypt/live/

It’s an annotation in the program written by chinese. There is a sign “#” before the sentence.

[root@cas123 ~]# ls -l /etc/letsencrypt/live/
total 8
drwxr-xr-x 2 root root 4096 May 1 08:40 www.shsunchem.com
drwxr-xr-x 2 root root 4096 May 1 08:35 www.sunchemgroup.com

Please show:
ls -l /etc/letsencrypt/live/www.shsunchem.com
ls -l /etc/letsencrypt/live/www.sunchemgroup.com

[root@cas123 ~]# ls -l /etc/letsencrypt/live/www.shsunchem.com
total 4
lrwxrwxrwx 1 root root 41 May 1 08:40 cert.pem -> …/…/archive/www.shsunchem.com/cert1.pem
lrwxrwxrwx 1 root root 42 May 1 08:40 chain.pem -> …/…/archive/www.shsunchem.com/chain1.pem
lrwxrwxrwx 1 root root 46 May 1 08:40 fullchain.pem -> …/…/archive/www.shsunchem.com/fullchain1.pem
lrwxrwxrwx 1 root root 44 May 1 08:40 privkey.pem -> …/…/archive/www.shsunchem.com/privkey1.pem
-rw-r–r-- 1 root root 543 May 1 08:40 README
[root@cas123 ~]# ls -l /etc/letsencrypt/live/www.sunchemgroup.com
total 4
lrwxrwxrwx 1 root root 44 May 1 08:35 cert.pem -> …/…/archive/www.sunchemgroup.com/cert1.pem
lrwxrwxrwx 1 root root 45 May 1 08:35 chain.pem -> …/…/archive/www.sunchemgroup.com/chain1.pem
lrwxrwxrwx 1 root root 49 May 1 08:35 fullchain.pem -> …/…/archive/www.sunchemgroup.com/fullchain1.pem
lrwxrwxrwx 1 root root 47 May 1 08:35 privkey.pem -> …/…/archive/www.sunchemgroup.com/privkey1.pem
-rw-r–r-- 1 root root 543 May 1 08:35 README

Show:
ls -l /home/wwwroot/www.shsunchem.com;

What are in these files?
/usr/local/nginx/conf/wordpress.conf
/usr/local/nginx/conf/enable-php.conf

[root@cas123 ~]# root /home/wwwroot/www.shsunchem.com
-bash: root: command not found

I’m sorry that I don’t know where the file is.

location / {
try_files $uri $uri/ /index.php?$args;
}

Add trailing slash to */wp-admin requests.

rewrite /wp-admin$ $scheme://$host$uri/ permanent;

[root@cas123 ~]# ls -l /home/www.shsunchem.com
total 3928
drwxr-xr-x 4 www www 4096 Dec 18 04:55 admin
drwxr-xr-x 2 www www 4096 Dec 18 04:55 adv
drwxr-xr-x 2 www www 4096 Dec 18 04:55 css
drwxr-xr-x 6 www www 4096 Dec 18 04:55 editor
drwxr-xr-x 4 www www 4096 Dec 18 04:55 en
-rw-r–r-- 1 root 3338 43 Jul 16 2013 favicon.ico
-rw-r–r-- 1 root root 53 Dec 20 07:55 googleae341ebc2a69ddb4.html
drwxr-xr-x 3 www www 4096 Dec 18 04:55 images
-rwxr-xr-x 1 www www 11510 Nov 30 2015 index.html.bak
-rw-r–r-- 1 root 3338 332 Jul 7 2013 index.php
drwxr-xr-x 2 www www 4096 Dec 18 04:55 jp
drwxr-xr-x 2 www www 4096 Dec 18 04:55 js
drwxr-xr-x 2 www www 4096 Dec 18 04:55 kr
drwxr-xr-x 5 www www 4096 Apr 21 10:15 new
-rwxr-xr-x 1 www www 3686459 Oct 27 2017 shsunche_gongsi.sql
drwxr-xr-x 2 www www 4096 Mar 5 2014 shsunchem
-rw-r–r-- 1 root root 246266 Dec 25 01:20 sitemap.xml
drwxr-xr-x 2 www www 4096 Dec 18 04:55 sub
-rw-r–r-- 1 root root 20 Nov 30 2015 test.php
drwxr-xr-x 4 www www 4096 Dec 28 02:47 uploadfile

Do you mean that the file lacks something? And what can I do to solve this problem?

That may be a wild goose chase…
Please show:
tail -n 25 /home/wwwlogs/nginx_error.log

[root@cas123 ~]# tail -n 25 /home/wwwlogs/nginx_error.log
2017/07/22 12:20:16 [crit] 21298#0: *11611 connect() to unix:/tmp/php-cgi.sock failed (2: No such file or directory) while connecting to upstream, client: 122.97.216.102, server: , request: "GET /p.php?act=rt&callback=jQuery1709644874477048789_1500685642189&=1500697122673 HTTP/1.1", upstream: “fastcgi://unix:/tmp/php-cgi.sock:”, host: “106.185.36.18”, referrer: “http://106.185.36.18/p.php
2017/12/25 07:31:08 [crit] 4374#0: *35046 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.76.124, server: 0.0.0.0:443
2017/12/25 07:31:09 [crit] 4374#0: *35063 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.76.124, server: 0.0.0.0:443
2017/12/31 00:54:30 [crit] 4374#0: *77565 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 40.113.15.214, server: 0.0.0.0:443
2018/01/19 18:35:35 [crit] 17205#0: *1120 SSL_do_handshake() failed (SSL: error:10067066:elliptic curve routines:ec_GFp_simple_oct2point:invalid encoding error:1408B010:SSL routines:ssl3_get_client_key_exchange:EC lib) while SSL handshaking, client: 207.154.250.97, server: 0.0.0.0:443
2018/01/22 21:20:50 [crit] 17205#0: *12997 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.73.20, server: 0.0.0.0:443
2018/01/22 21:20:50 [crit] 17205#0: *13007 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.73.20, server: 0.0.0.0:443
2018/02/20 20:43:32 [crit] 13517#0: *4469 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 54.223.27.30, server: 0.0.0.0:443
2018/02/20 20:43:33 [crit] 13517#0: *4488 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 54.223.27.30, server: 0.0.0.0:443
2018/03/08 02:18:05 [crit] 16983#0: *15016 SSL_do_handshake() failed (SSL: error:10067066:elliptic curve routines:ec_GFp_simple_oct2point:invalid encoding error:1408B010:SSL routines:ssl3_get_client_key_exchange:EC lib) while SSL handshaking, client: 46.101.245.23, server: 0.0.0.0:443
2018/03/21 20:22:23 [crit] 18270#0: *21752 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.137.166, server: 0.0.0.0:443
2018/03/21 20:22:24 [crit] 18270#0: *21764 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.137.166, server: 0.0.0.0:443
2018/04/15 16:23:26 [crit] 18270#0: *147712 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 178.79.164.44, server: 0.0.0.0:443
2018/04/19 18:51:56 [crit] 18270#0: *163816 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.73.20, server: 0.0.0.0:443
2018/04/19 18:51:56 [crit] 18270#0: *163827 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 52.80.73.20, server: 0.0.0.0:443
2018/05/01 07:43:24 [alert] 23307#0: worker process 23310 exited on signal 9
2018/05/01 11:50:33 [crit] 6039#0: *403 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.107, server: 0.0.0.0:443
2018/05/01 11:50:33 [crit] 6039#0: *404 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.107, server: 0.0.0.0:443
2018/05/01 12:07:17 [crit] 6039#0: *686 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.105, server: 0.0.0.0:443
2018/05/01 12:07:18 [crit] 6039#0: *687 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.105, server: 0.0.0.0:443
2018/05/01 12:09:53 [crit] 6039#0: *943 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.108, server: 0.0.0.0:443
2018/05/01 12:09:53 [crit] 6039#0: *944 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.108, server: 0.0.0.0:443
2018/05/01 12:16:45 [crit] 6039#0: *1248 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.108, server: 0.0.0.0:443
2018/05/01 12:16:46 [crit] 6039#0: *1249 SSL_do_handshake() failed (SSL: error:14094085:SSL routines:ssl3_read_bytes:ccs received early) while SSL handshaking, client: 64.41.200.108, server: 0.0.0.0:443