Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change 
notification.

The following page has been changed by jink:
http://wiki.apache.org/httpd/Recipes/WatchingHttpHeaders

The comment on the change is:
more shell fixes

------------------------------------------------------------------------------
  Help on various ways to watch http headers.
  
- I can't get wireshark to see any of my network interfaces at the moment so 
help here would be appreciated.
- 
-  * wget -S
   * livehttpheaders http://livehttpheaders.mozdev.org/
-  * curl -something
-  * lynx -something_else
-  * siege -g
-  * HEAD/GET (perl commands installed by common perl packages)
  
  == Shell ==
  {{{wget -S --spider URL
+ lynx -head -dump URL
+ curl -I URL
+ HEAD URL
  GET -de URL
- HEAD URL
  w3m -dump_head URL
- lynx -head -dump URL}}}
+ siege -g URL}}}
  
  == Wireshark ==
  [http://www.wireshark.org/ WireShark]
@@ -45, +40 @@

  {{{http.content_type == "image/gif"}}}
  
  === Do not show content http, only headers ===
- {{{http.response !=0 || http.request.method != "TRACE"}}}
+ {{{http.response != 0 || http.request.method != "TRACE"}}}
  
  
[http://www.askapache.com/2007/htaccess/sniff-http-to-debug-apache-htaccess-and-httpdconf.html
 Sniff HTTP to debug Apache]
  

Reply via email to