You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2010/09/14 03:24:42 UTC

[Couchdb Wiki] Update of "HttpGetFavicon" by NuuttiKotivuori

Dear Wiki user,

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

The "HttpGetFavicon" page has been changed by NuuttiKotivuori.
http://wiki.apache.org/couchdb/HttpGetFavicon

--------------------------------------------------

New page:
= HTTP GET favicon.ico =

||'''Method'''||<-2>GET||
||'''Path'''||<-2>/favicon.ico||
||'''Query args'''||<-2>None||
||'''Request body'''||<-2>None||
||'''Response body'''||<-2>Site icon||

== Description ==

Returns the favicon for the site. The favicon is a part of the admin interface, but the handler for it is special as CouchDB tries to make sure that the favicon is cached for one year.

== Example ==
{{{
GET /favicon.ico HTTP/1.1
}}}{{{
HTTP/1.1 200 OK
Expires: Wed, 14 Sep 2011 01:16:39 GMT
Cache-Control: public, max-age=31536000
Content-Type: image/x-icon

<binary>
}}}