Good Morning Marshae:
Something is unusual about the address
mendel.hudsonalpha.org
A 'curl -I' on that says it has moved to a different address:
curl -I
mendel.hudsonalpha.org
HTTP/1.1 301 Moved Permanently
Date: Thu, 05 Jun 2025 16:31:06 GMT
Server: Apache/2.4.62 (Rocky Linux) OpenSSL/3.0.7
Location:
https://mendel.hudsonalpha.org/
Content-Type: text/html; charset=iso-8859-1
And when I instruct 'curl' to follow that redirect, it never
gets an answer:
curl -L -I
mendel.hudsonalpha.org
HTTP/1.1 301 Moved Permanently
Date: Thu, 05 Jun 2025 16:31:38 GMT
Server: Apache/2.4.62 (Rocky Linux) OpenSSL/3.0.7
Location:
https://mendel.hudsonalpha.org/
Content-Type: text/html; charset=iso-8859-1
And appears to hang up waiting for the redirection, with an eventual timeout:
curl: (28) Failed to connect to
mendel.hudsonalpha.org port 443: Connection
timed out
--Hiram