diff options
author | Rasmus Dahlberg <rasmus@mullvad.net> | 2021-12-09 11:14:31 +0100 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@mullvad.net> | 2021-12-09 11:14:31 +0100 |
commit | 89f0a41e8baefddf2c6962a8f0eee71dfd124d21 (patch) | |
tree | 85d7723d8e66225d9fe02304b0bac4c9f00c8eac /issues/improve-server-configuration.md | |
parent | e74021bee14cdc6a5aa22ddc2068c2f72dfe277f (diff) |
added issues
Diffstat (limited to 'issues/improve-server-configuration.md')
-rw-r--r-- | issues/improve-server-configuration.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/issues/improve-server-configuration.md b/issues/improve-server-configuration.md new file mode 100644 index 0000000..7e9de71 --- /dev/null +++ b/issues/improve-server-configuration.md @@ -0,0 +1,17 @@ +**Title:** Improve server configuration and documentation </br> +**Date:** 2021-12-09 </br> + +# Summary +Make server configuration more robust and dynamically updatable without restart. + +# Description +All server configurations are currently done via command-line arguments. This +may be OK for settings that last through a log's entire lifetime. However, it +is inappropriate for parameters like `--witnesses` which are not static. + +Reading a configuration file at start and when receiving, say, SIGHUP, is an +alternative. Implementing a "control port", typically via a TCP endpoint, where +an administrator can "program" the log instance is another alternative. + +This issue requires some design considerations before getting started. It would +be good to improve documentation on how to run sigsum-log-go at the same time. |