What does HTTP code 172 mean

apache-2.2http

browsing access logs, sometimes I see

"POST / HTTP/1.0" 200

which should be OK

but other times I see

"POST / HTTP/1.0" 200 172

What does the 172 next to 200 mean?

Also, I see a few with 7250, or 44

Best Answer

That is a post to the access log, which by default is formatted like this:

LogFormat "%h %l %u %t \"%r\" %>s %b" common

Where %b is your elusive '172', the size of the response in bytes. see this site.

Related Topic