慣れないtelnetを使ってレスポンスヘッダを確認しようとして「あれー、ついてないぞ?」となった。 $ telnet localhost 8101 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GET /static/t <html> <h1>hello</h1> Connection closed by foreign host.正解はこうだった。 $ telnet localhost 8101 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GET /static/t HTTP/1.0 HTTP/1.0 200 OK Content-Type: application/octet-stream Last