Switch to string fields for key and certificate paths. (#154)

This simplifies our deployment process, allowing us to use existing
configuration management tools designed for templating command-line
parameters to template the config files in a straightforward manner.
This commit is contained in:
Kyle Isom
2016-07-14 09:42:32 -07:00
committed by GitHub
parent a11d1e51d3
commit 79eda1eea1
5 changed files with 24 additions and 31 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
{
"server": {
"address": "localhost:8080",
"private_keys": ["testdata/server.key"],
"certificates": ["testdata/server.pem"],
"private_keys": "testdata/server.key",
"certificates": "testdata/server.pem",
},
}
+2 -6
View File
@@ -1,12 +1,8 @@
{
"server": {
"address": "localhost:8080",
"private_keys": [
"testdata/server.key"
],
"certificates": [
"testdata/server.pem"
]
"private_keys": "testdata/server.key",
"certificates": "testdata/server.pem"
}
}