David, for a "shot in the dark," that was perfect aim, and all is working great now. I can't thank you and the community enough for the guidance.
For a saner, future me, I documented my procedures below. Any improvements or suggestions are welcome. -Alan openssl version OpenSSL 1.1.1 11 Sep 2018 (Library: OpenSSL 1.1.1d 10 Sep 2019) curl-config --version libcurl 7.47.0 *INSTALL CURL+SSL* Build curl from source with SSL support. I used curl v7.67.0 and installed it in `/opt/curl`. sudo mkdir /opt/curl sudo chown root:root /opt/curl git clone https://github.com/curl/curl.git cd curl git checkout curl-7_67_0 autoreconf ./configure --prefix=/opt/curl --with-ssl make sudo make install Verify the curl installation: /opt/curl/bin/curl --version curl 7.68.0-DEV (x86_64-pc-linux-gnu) libcurl/7.68.0-DEV OpenSSL/1.1.1d Release-Date: [unreleased] Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp Features: AsynchDNS HTTPS-proxy IPv6 Largefile NTLM NTLM_WB SSL TLS-SRP UnixSockets *INSTALL MOD_AUTH_CAS* Clone the apereo/mod_auth_cas from master (latest commit to include a requestId: 89ac1b6, 2018-07-30; not necessary, but I branched and tagged this locally for now). Specify the newly-built curl+ssl package in the configuration and build/install the CAS module. git clone https://github.com/apereo/mod_auth_cas.git cd mod_auth_cas [branched, tagged, and checked out] autoreconf -ivf ./configure --with-libcurl=/opt/curl make sudo make install Refer to the Apache guidelines for configuring a service or SAML validation endpoint. -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions: https://goo.gl/mh7qDG --- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/apereo.org/d/msgid/cas-user/7edc753b-1458-43df-bf41-d592560282d5%40apereo.org.
