mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 20:38:08 +08:00
ext: use distribution spec route prefix for extension api
Following the spec defined here https://github.com/opencontainers/distribution-spec/tree/main/extensions Signed-off-by: Shivam Mishra <shimish2@cisco.com>
This commit is contained in:
committed by
Ramkumar Chinchani
parent
c1bf4456d0
commit
36c9631000
@@ -1,27 +1,27 @@
|
||||
{
|
||||
"distSpecVersion":"1.0.1",
|
||||
"storage":{
|
||||
"rootDirectory":"/tmp/zot"
|
||||
"distSpecVersion": "1.0.1-dev",
|
||||
"storage": {
|
||||
"rootDirectory": "/tmp/zot"
|
||||
},
|
||||
"http": {
|
||||
"address":"127.0.0.1",
|
||||
"port":"8080",
|
||||
"realm":"zot",
|
||||
"address": "127.0.0.1",
|
||||
"port": "8080",
|
||||
"realm": "zot",
|
||||
"tls": {
|
||||
"cert":"test/data/server.cert",
|
||||
"key":"test/data/server.key"
|
||||
"cert": "test/data/server.cert",
|
||||
"key": "test/data/server.key"
|
||||
},
|
||||
"auth": {
|
||||
"ldap": {
|
||||
"address":"ldap.example.org",
|
||||
"port":389,
|
||||
"startTLS":false,
|
||||
"baseDN":"ou=Users,dc=example,dc=org",
|
||||
"userAttribute":"uid",
|
||||
"bindDN":"cn=ldap-searcher,ou=Users,dc=example,dc=org",
|
||||
"bindPassword":"ldap-searcher-password",
|
||||
"skipVerify":false,
|
||||
"subtreeSearch":true
|
||||
"address": "ldap.example.org",
|
||||
"port": 389,
|
||||
"startTLS": false,
|
||||
"baseDN": "ou=Users,dc=example,dc=org",
|
||||
"userAttribute": "uid",
|
||||
"bindDN": "cn=ldap-searcher,ou=Users,dc=example,dc=org",
|
||||
"bindPassword": "ldap-searcher-password",
|
||||
"skipVerify": false,
|
||||
"subtreeSearch": true
|
||||
},
|
||||
"htpasswd": {
|
||||
"path": "test/data/htpasswd"
|
||||
@@ -30,9 +30,9 @@
|
||||
},
|
||||
"allowReadAccess": false
|
||||
},
|
||||
"log":{
|
||||
"level":"debug",
|
||||
"output":"/tmp/zot.log",
|
||||
"log": {
|
||||
"level": "debug",
|
||||
"output": "/tmp/zot.log",
|
||||
"audit": "/tmp/zot-audit.log"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user