2021-05-13 13:59:12 -05:00
|
|
|
{
|
2022-03-15 15:58:32 -05:00
|
|
|
"distSpecVersion": "1.0.1",
|
2021-05-13 13:59:12 -05:00
|
|
|
"storage": {
|
|
|
|
"rootDirectory": "/tmp/zot"
|
|
|
|
},
|
|
|
|
"http": {
|
|
|
|
"address": "127.0.0.1",
|
|
|
|
"port": "8080",
|
|
|
|
"realm": "zot",
|
|
|
|
"auth": {
|
|
|
|
"htpasswd": {
|
|
|
|
"path": "test/data/htpasswd"
|
|
|
|
},
|
|
|
|
"failDelay": 1
|
|
|
|
},
|
|
|
|
"accessControl": {
|
2021-09-10 10:23:26 -05:00
|
|
|
"**": {
|
|
|
|
"policies": [
|
|
|
|
{
|
|
|
|
"users": ["charlie"],
|
|
|
|
"actions": ["read", "create", "update"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"defaultPolicy": ["read", "create"]
|
|
|
|
},
|
|
|
|
"tmp/**": {
|
|
|
|
"defaultPolicy": ["read", "create", "update"]
|
|
|
|
},
|
|
|
|
"infra/**": {
|
2021-05-13 13:59:12 -05:00
|
|
|
"policies": [
|
|
|
|
{
|
|
|
|
"users": ["alice", "bob"],
|
|
|
|
"actions": ["create", "read", "update", "delete"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"users": ["mallory"],
|
|
|
|
"actions": ["create", "read"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"defaultPolicy": ["read"]
|
|
|
|
},
|
|
|
|
"repos2/repo": {
|
|
|
|
"policies": [
|
|
|
|
{
|
2021-09-10 10:23:26 -05:00
|
|
|
"users": ["charlie"],
|
2021-05-13 13:59:12 -05:00
|
|
|
"actions": ["read", "create"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"users": ["mallory"],
|
|
|
|
"actions": ["create", "read"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"defaultPolicy": ["read"]
|
|
|
|
},
|
|
|
|
"adminPolicy": {
|
|
|
|
"users": ["admin"],
|
|
|
|
"actions": ["read", "create", "update", "delete"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"log": {
|
|
|
|
"level": "debug",
|
|
|
|
"output": "/tmp/zot.log"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|