update couch-daemon: allow regexp in white- and blacklist

pull/20/head
Johannes J. Schmidt 10 years ago
parent 21806dde5d
commit 6ca836cc98

@ -54,10 +54,12 @@ concurrency = 1
; for the usual image resizes, increase it if you deal with really large images and complex
; imagemagick processing.
timeout = 60000
; Only documents in the databases above are processed (seperate with comma)
; whitelist = mydb,otherdb
; Ignore the following databases (again comma seperated list)
blacklist = _users,_replicator
; Only documents in the databases below are processed (separate with comma).
; Regular expressions are allowed:
;whitelist = mydb,otherdb,/^special-.*/
; Ignore the following databases (again comma separated list)
; Regular expressions are again allowed:
blacklist = /^_/
```
## Imagemagick Configuration

@ -1,6 +1,6 @@
{
"name": "couchmagick",
"version": "2.1.2",
"version": "2.2.0",
"description": "Couchmagick runs ImageMagicks `convert` on CouchDB documents.",
"main": "index.js",
"preferGlobal": true,
@ -27,7 +27,7 @@
},
"homepage": "https://github.com/jo/couchmagick",
"dependencies": {
"couch-daemon": "^1.2.10",
"couch-daemon": "^1.4.0",
"strformat": "0.0.3",
"docuri": "^1.1.0",
"async": "^0.9.0",

Loading…
Cancel
Save