diff options
author | John Christopher Anderson <jchris@apache.org> | 2008-12-19 08:25:19 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2008-12-19 08:25:19 +0000 |
commit | 1326c40d66563279dcce712f130c10e5d1d80a03 (patch) | |
tree | 587485404908ad79321556a2119cc92212bf1ac0 /etc/couchdb | |
parent | 2a6ad51f1acd4cae30a6e976d00444a1a6931702 (diff) |
shorter path to _action servers, external supports better routing control
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@727973 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'etc/couchdb')
-rw-r--r-- | etc/couchdb/default.ini.tpl.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/couchdb/default.ini.tpl.in b/etc/couchdb/default.ini.tpl.in index 863ec1f7..a56e05bc 100644 --- a/etc/couchdb/default.ini.tpl.in +++ b/etc/couchdb/default.ini.tpl.in @@ -45,4 +45,10 @@ _restart = {couch_httpd_misc_handlers, handle_restart_req} [httpd_db_handlers] _view = {couch_httpd_view, handle_view_req} _temp_view = {couch_httpd_view, handle_temp_view_req} -_external = {couch_httpd_external, handle_external_req} +; The new location for action servers +_action = {couch_httpd_external, handle_external_req, <<"action">>} +; They'd been here for a while. If something you've been running breaks on you +; try adding the next line to your local.ini. Or better yet replace +; '_external/action' in your urls with '_action'. +; This message will be removed before the next release. +; _external = {couch_httpd_external, handle_external_req} |