Apache reverse proxy with 3rd party key

Site works without reverse proxy

Reading Running Cells behind an Apache reverse proxy | Pydio. Everything is the same, except ServerName, of course. The example references let’s encrypt config file. I have that line commented out for VirtualHosts.

curl http://localhost --verbose

  • Rebuilt URL to: http://localhost/
  • Trying ::1…
  • TCP_NODELAY set
  • connect to ::1 port 80 failed: Connection refused
  • Trying 127.0.0.1…
  • TCP_NODELAY set
  • Connected to localhost (127.0.0.1) port 80 (#0)

GET / HTTP/1.1
Host: localhost
User-Agent: curl/7.61.1
Accept: /

< HTTP/1.1 302 Found
< Date: Wed, 18 Oct 2023 21:47:40 GMT
< Server: Apache/2.4.37 (AlmaLinux) OpenSSL/1.1.1k
< Location: https://localhost/
< Content-Length: 202
< Content-Type: text/html; charset=iso-8859-1
<

302 Found

Found

The document has moved here.

* Connection #0 to host localhost left intact

curl https://localhost --verbose

  • Rebuilt URL to: https://localhost/
  • Trying ::1…
  • TCP_NODELAY set
  • Connected to localhost (::1) port 443 (#0)
  • ALPN, offering h2
  • ALPN, offering http/1.1
  • successfully set certificate verify locations:
  • CAfile: /etc/pki/tls/certs/ca-bundle.crt
    CApath: none
  • TLSv1.3 (OUT), TLS handshake, Client hello (1):
  • error:1408F10B:SSL routines:ssl3_get_record:wrong version number
  • Closing connection 0
    curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong version number

This is not the bundle that I received from the 3rd party:

  • CAfile: /etc/pki/tls/certs/ca-bundle.crt

See SSL 1 for apache but a wrong ssl3 version number

Browser displays:
This site can’t provide a secure connection
.com sent an invalid response.
Try running Windows Network Diagnostics.
ERR_SSL_PROTOCOL_ERROR

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.