Using ==== Couchbase Sync Gateway/master(d41bd84) ====
I can normally access all the views I’ve found in a given server normally
I tried to update to couchbase-sync-gateway-enterprise_1.4-67_x86_64
but I cannot access any view in the server
sync_gateway.json
{
"log": ["HTTP", "Auth"],
"interface": ":4984",
"adminInterface": "0.0.0.0:4985",
"databases": {
"bucket1": {
"server_walrus": "walrus:///tmp/walrus",
"server": "http://localhost:8091",
"bucket": "bucket1",
"sync": `function(doc) {channel(doc.channels);}`,
"users": {
"GUEST": {
"disabled": false,
"admin_channels": ["*"]
},
"user": {
"disabled": false,
"password": "password",
"admin_channels": ["*", "all"]
}
}
},
"bucket2": {
"server_walrus": "walrus:///tmp/walrus",
"server": "http://localhost:8091",
"bucket": "bucket2",
"sync": `function(doc) {channel(doc.channels);}`,
"users": {
"GUEST": {
"disabled": false,
"admin_channels": ["*"]
},
"user": {
"disabled": false,
"password": "password",
"admin_channels": ["*", "all"]
}
}
}
}
}
Also, although I tried to specifically map the Admin interface to a public port, it refuses to do so.
I must note that, although I’ve done some things in the server, I still miss a lot of knowledge in the usage of the server. So treat me like a total rookie