mirror of https://github.com/docker/docs.git
30 lines
693 B
JSON
30 lines
693 B
JSON
{
|
|
"server": {
|
|
"http_addr": ":4443",
|
|
"tls_key_file": "./notary-server.key",
|
|
"tls_cert_file": "./notary-server.crt"
|
|
},
|
|
"trust_service": {
|
|
"type": "remote",
|
|
"hostname": "notarysigner",
|
|
"port": "7899",
|
|
"tls_ca_file": "./root-ca.crt",
|
|
"key_algorithm": "ecdsa",
|
|
"tls_client_cert": "./notary-server.crt",
|
|
"tls_client_key": "./notary-server.key"
|
|
},
|
|
"logging": {
|
|
"level": "debug"
|
|
},
|
|
"storage": {
|
|
"backend": "rethinkdb",
|
|
"db_url": "rdb-proxy.rdb",
|
|
"database": "notaryserver",
|
|
"tls_ca_file": "./rethinkdb/ca.pem",
|
|
"client_key_file": "./rethinkdb/key.pem",
|
|
"client_cert_file": "./rethinkdb/cert.pem",
|
|
"username": "server",
|
|
"password": "serverpass"
|
|
}
|
|
}
|