Changed notary-server to point at new certs

Signed-off-by: Diogo Monica <diogo@docker.com>
This commit is contained in:
Diogo Monica
2015-07-15 19:45:34 -07:00
parent 9a065a8d40
commit cdee810942
3 changed files with 7 additions and 7 deletions

View File

@@ -57,8 +57,8 @@ The configuration file must be a json file with the following format:
{
"server": {
"addr": ":4443",
"tls_cert_file": "./fixtures/notary.pem",
"tls_key_file": "./fixtures/notary.key"
"tls_cert_file": "./fixtures/notary-server.pem",
"tls_key_file": "./fixtures/notary-server.key"
},
"logging": {
"level": 5

View File

@@ -1,14 +1,14 @@
{
"server": {
"addr": ":4443",
"tls_cert_file": "./fixtures/notary.pem",
"tls_key_file": "./fixtures/notary.key"
"tls_cert_file": "./fixtures/notary-server.pem",
"tls_key_file": "./fixtures/notary-server.key"
},
"trust_service": {
"type": "local",
"hostname": "signer",
"port": "7899",
"tls_ca_file": "./fixtures/ca.cert"
"tls_ca_file": "./fixtures/root-ca.crt"
},
"logging": {
"level": 5

View File

@@ -1,8 +1,8 @@
{
"server": {
"addr": ":4443",
"tls_key_file": "/go/src/github.com/docker/notary/fixtures/notary.key",
"tls_cert_file": "/go/src/github.com/docker/notary/fixtures/notary.pem"
"tls_key_file": "/go/src/github.com/docker/notary/fixtures/notary-server.key",
"tls_cert_file": "/go/src/github.com/docker/notary/fixtures/notary-signer.pem"
},
"trust_service": {
"type": "local",