This message was deleted.
# general
a
This message was deleted.
s
Additional tests with curl in verbose mode HTTP
Copy code
> curl -v <http://google.com>
* Host google.com:80 was resolved.
* IPv6: (none)
* IPv4: MYIPADDRESS
*   Trying MYIPADDRESS:80...
* Connected to google.com (MYIPADDRESS) port 80
> GET / HTTP/1.1
> Host: google.com
> User-Agent: curl/8.6.0
> Accept: */*
> 
< HTTP/1.1 308 Permanent Redirect
< Connection: close
< Location: <https://google.com/>
< Server: Caddy
< Date: Tue, 22 Oct 2024 19:24:16 GMT
< Content-Length: 0
< 
* Closing connection
HTTPS
Copy code
> curl -v <https://google.com>
* Host google.com:443 was resolved.
* IPv6: (none)
* IPv4: MYIPADDRESS
*   Trying MYIPADDRESS:443...
* Connected to google.com (MYIPADDRESS) port 443
* ALPN: curl offers h2,http/1.1
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* TLSv1.3 (IN), TLS alert, internal error (592):
* OpenSSL/3.1.4: error:0A000438:SSL routines::tlsv1 alert internal error
* Closing connection
curl: (35) OpenSSL/3.1.4: error:0A000438:SSL routines::tlsv1 alert internal error
plop, if anyone has an idea...
p
Copy code
< Location: <https://google.com/>
< Server: Caddy
according to your first post so it seems to check out
s
alright I'm gonna check that out. seems like it has nothing to do with Rancher, sorry for disturbing!