Hello,
I'm getting TLS errors when using this plugin (I stripped IP addresses for privacy concerns):
$ curl -v https://xxx.yyy/
* Trying xxx.xxx.xxx.x:443...
* TCP_NODELAY set
* Connected to xxx.yyy (xxx.xxx.xxx.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):
* OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to xxx.yyy:443
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to xxx.yyy:443
{"level":"debug","ts":1662558661.0007904,"logger":"http.stdlib","msg":"http: TLS handshake error from xx.xxx.xxx.xxx:3803: invalid signature"}
Here is my caddyfile:
{
debug
servers {
listener_wrappers {
proxy_protocol {
timeout 5s
allow 0.0.0.0/0
}
tls
}
}
}
xxx.yyy {
reverse_proxy sftpgo:8080 # I run this in docker-compose, so sftpgo is a docker containe
}
I don't understand what I'm doing wrong.
Hello,
I'm getting TLS errors when using this plugin (I stripped IP addresses for privacy concerns):
Here is my caddyfile:
{ debug servers { listener_wrappers { proxy_protocol { timeout 5s allow 0.0.0.0/0 } tls } } } xxx.yyy { reverse_proxy sftpgo:8080 # I run this in docker-compose, so sftpgo is a docker containe }I don't understand what I'm doing wrong.