1. The problem I’m having:
curl -vL https://thedomain.com
2. Error messages and/or full log output:
TCP_NODELAY set
Connected to thedomain.com (x.x.x.x) 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
TLSv1.3 (OUT), TLS handshake, Client hello (1):
TLSv1.3 (IN), TLS alert, internal error (592):
error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error
Closing connection 0
curl: (35) error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error
==================== open ssl command gives ==============
openssl s_client -connect thedomain:443
CONNECTED(00000003)
140225236829504:error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error:../ssl/record/rec_layer_s3.c:1543:SSL alert number 80
3. Caddy version:
2.7.5
4. How I installed and ran Caddy:
Using docker image run it with docker compose and php-fpm
a. System environment:
Ubuntu 22.04
b. Command:
PASTE OVER THIS, BETWEEN THE ``` LINES.
Please use the preview pane to ensure it looks nice.
c. Service/unit/compose file:
PASTE OVER THIS, BETWEEN THE ``` LINES.
Please use the preview pane to ensure it looks nice.
d. My complete Caddy config:
thedomain.com {
root * /srv/public
php_fastcgi accounts-fpm:9000
file_server
}```