Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.
The following page has been changed by CurtArnold: http://wiki.apache.org/couchdb/Apache_As_a_Reverse_Proxy ------------------------------------------------------------------------------ * Forward any requests that start with /db/ to CouchDB. * Add user=username to the list of parameters to any request to CouchDB for use with a custom authentication_handler. + The snippet requires that the proxy, proxy_http, rewrite and auth_digest modules be enabled. {{{ <VirtualHost *:80> @@ -60, +61 @@ BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On ProxyRequests Off - <Proxy *> + <Proxy *> Order Allow,Deny Allow from all </Proxy>
