For some reason I cannot access one of our apps via IPv4.
$ curl -4v https://app.at.domain/
* Trying a.b.c.d:443...
* Connected to host.at.domain (a.b.c.d) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
* CAfile: /etc/ssl/cert.pem
* CApath: none
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
* LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to host.at.domain:443
* Closing connection 0
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to host.at.domain:443
Here is the relevant snippet from fly.toml.
[[services]]
internal_port = 8080
processes = ["app"]
protocol = "tcp"
[[services.ports]]
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
Tried to access it from multiple sites with different internet connections and ISPs, but no luck.
The affected app is “…-production-app”.
Does anybody have any ideas what could be the problem here?