Read HTTP headers
Quest: read-http-headers
Mission
Run curl -I on your personal homepage and report the status line or Server header.
Commands You Will Use
curl -I
Steps
- Run
curl -I "https://lf2607.kolamayermakers.org/~$USER/". - Read the first status line.
- Look for a
serverheader if one appears. - Use
guide answer 'your observed result'with the status line including its three-digit code, or a nonemptyServer:header.
The quoted URL expands $USER to your account name. You may also substitute your account name directly, with or without matching quotes. Keep the trailing / and no subpath for the homepage check.
Hints
-Iasks for headers only.- HTTP responses start with a status line.
- Include the HTTP version and three-digit status, such as
HTTP/2 200. The version alone is not a result.
If Check Fails
Include the three-digit code in the status line, or the value of the Server: header. The quest checks your reported answer, not captured HTTP output. A connection failure is not an HTTP status; inspect curl’s diagnostic and ask for help if needed.

Linux Foundations