summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJohn Christopher Anderson <jchris@apache.org>2008-12-16 20:42:05 +0000
committerJohn Christopher Anderson <jchris@apache.org>2008-12-16 20:42:05 +0000
commite64377c89cb535d4d649f637d3b434356ff984b5 (patch)
tree323673b652c3eda53985ca8e9ed5d2c243249988 /etc
parent54ddcb1768b915e90d315e1f5ceba4f322b8e28b (diff)
the external process handler
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@727136 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'etc')
-rw-r--r--etc/couchdb/default.ini.tpl.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/couchdb/default.ini.tpl.in b/etc/couchdb/default.ini.tpl.in
index 65f6de9d..863ec1f7 100644
--- a/etc/couchdb/default.ini.tpl.in
+++ b/etc/couchdb/default.ini.tpl.in
@@ -21,13 +21,16 @@ level = info
[query_servers]
javascript = %bindir%/%couchjs_command_name% %localdatadir%/server/main.js
+[external]
+action = %bindir%/%couchjs_command_name% %localdatadir%/server/action.js
+
[daemons]
view_manager={couch_view, start_link, []}
+external_manager={couch_external_manager, start_link, []}
db_update_notifier={couch_db_update_notifier_sup, start_link, []}
query_servers={couch_query_servers, start_link, []}
httpd={couch_httpd, start_link, []}
-
[httpd_global_handlers]
/ = {couch_httpd_misc_handlers, handle_welcome_req, <<"Welcome">>}
favicon.ico = {couch_httpd_misc_handlers, handle_favicon_req, "%localdatadir%/www"}
@@ -42,3 +45,4 @@ _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}