[GH-ISSUE #195] more ssl errors #124

Closed
opened 2026-02-25 22:32:40 +03:00 by kerem · 1 comment
Owner

Originally created by @nattyebola on GitHub (Aug 30, 2019).
Original GitHub issue: https://github.com/FiloSottile/mkcert/issues/195

hello,

after installing mkcert cetificates on my local machine
and use generated certificates in a nginx container
docker-compose.yaml

    volumes:
      - ./microservices.doc.pem:/etc/nginx/ssl/certif.pem
      - ./microservices.doc-key.pem:/etc/nginx/ssl/key.pem

nginx.conf

server {
    listen 443 ssl http2;
    server_name microservices.doc;
    ssl on;
    ssl_certificate /etc/nginx/ssl/certif.pem;
    ssl_certificate_key /etc/nginx/ssl/key.pem;

i have one of this errors :

curl :

curl https://microservices.doc --noproxy microservices.doc -v           
* Rebuilt URL to: https://microservices.doc/
*   Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to microservices.doc (127.0.0.1) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* (304) (OUT), TLS handshake, Client hello (1):
* OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to microservices.doc:443 
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to microservices.doc:443 

firefox :
PR_END_OF_FILE_ERROR

chrome :
ERR_CONNECTION_RESET or ERR_CONNECTION_CLOSED

what did i wrong ?

Originally created by @nattyebola on GitHub (Aug 30, 2019). Original GitHub issue: https://github.com/FiloSottile/mkcert/issues/195 hello, after installing mkcert cetificates on my local machine and use generated certificates in a nginx container docker-compose.yaml ```yaml volumes: - ./microservices.doc.pem:/etc/nginx/ssl/certif.pem - ./microservices.doc-key.pem:/etc/nginx/ssl/key.pem ``` nginx.conf ```conf server { listen 443 ssl http2; server_name microservices.doc; ssl on; ssl_certificate /etc/nginx/ssl/certif.pem; ssl_certificate_key /etc/nginx/ssl/key.pem; ``` i have one of this errors : curl : ```bash curl https://microservices.doc --noproxy microservices.doc -v * Rebuilt URL to: https://microservices.doc/ * Trying 127.0.0.1... * TCP_NODELAY set * Connected to microservices.doc (127.0.0.1) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/ssl/certs/ca-certificates.crt CApath: /etc/ssl/certs * (304) (OUT), TLS handshake, Client hello (1): * OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to microservices.doc:443 * Closing connection 0 curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to microservices.doc:443 ``` firefox : PR_END_OF_FILE_ERROR chrome : ERR_CONNECTION_RESET or ERR_CONNECTION_CLOSED what did i wrong ?
kerem 2026-02-25 22:32:40 +03:00
Author
Owner

@FiloSottile commented on GitHub (Sep 10, 2019):

I don't think this has anything to do with mkcert, because the error occurs before certificates are exchanged, sorry.

<!-- gh-comment-id:529940154 --> @FiloSottile commented on GitHub (Sep 10, 2019): I don't think this has anything to do with mkcert, because the error occurs before certificates are exchanged, sorry.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/mkcert#124
No description provided.