Reputation: 923
I've got this in my couchdb local.ini. I know it's in ok because I see it in httpd_global_handlers config in futon.
_fti = {couch_httpd_proxy, handle_proxy_req, <<"http://127.0.0.1:5985">>}
Lucene is running ok.
Yet when I try to access _fti through couch i'm getting this ...
http://localhost:5984/myDbName/_fti {"error":"not_found","reason":"missing"}
Upvotes: 0
Views: 238
Reputation: 33
This path is when you are using the Python hook script. But you are adding a proxy handler which you query like http://localhost:5984/_fti/local/myDbName/_design/foo/by_content?q=hello
Upvotes: 0