mirror of
https://github.com/cloudflare/redoctober.git
synced 2026-09-19 06:14:12 +00:00
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:
Vendored
+2
-2
@@ -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",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Vendored
+2
-6
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user