Created
August 27, 2014 08:47
-
-
Save atkit/236e8da97fc77cb526c9 to your computer and use it in GitHub Desktop.
Couchbase Sync Gateway Config With Guest Access Enabled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"log": ["CRUD", "CRUD+", "HTTP", "HTTP+", "Access", "Cache", "Changes", "Changes+"], | |
"interface":":4984", | |
"adminInterface":":14985", | |
"facebook":{ | |
"register":true | |
}, | |
"databases":{ | |
"gw":{ | |
"users": { | |
"GUEST": {"disabled": false, "admin_channels": ["*"] } | |
}, | |
"server":"http://localhost:8091", | |
"bucket":"default", | |
"sync": ` function(doc, oldDoc) { channel("all_docs");} ` | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment