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 thomaslang:
http://wiki.apache.org/couchdb/Apache_As_a_Reverse_Proxy
------------------------------------------------------------------------------
On linux Apache 2.2.10 you must use nocanon - otherwise many tests fail.
Note from Thomas Lang:
- I had to remove the trailing slashes on ProxyPass and ProxyPassReverse in order to get a
request to '/_uuids' give the right response. New conf:
+ I had to remove the trailing slashes on ProxyPass and ProxyPassReverse in order to get a
request to '/_uuids' give the right response. Changed lines:
+
+ {{{
ProxyPass / http://localhost:5984 nocanon
ProxyPassReverse / http://localhost:5984
+ }}}
+
Before this change apache would add an extra slash before every request to a resource beginning
with '_', resulting in this: 'GET' //_utils 500
|