From 79e45eed4ce21be42d557c4d8a41cfa8d861cf51 Mon Sep 17 00:00:00 2001 From: Amos Ng Date: Mon, 22 Jun 2020 11:57:01 +0800 Subject: [PATCH] Added `config.sample.json` sample client configuration file --- CHANGELOG.md | 1 + config.sample.json | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100755 config.sample.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b61b3c..f7b3afe 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.0-RC22] - 2020-06-22 ### Added - [2020-06-20] Added `graceful_shutdown_wait_seconds` client setting by [@carbotaniuman] +- [2020-06-20] Added `config.sample.json` sample client configuration file by [@lflare] ## [1.0.0-RC21] - 2020-06-20 ### Changed diff --git a/config.sample.json b/config.sample.json new file mode 100755 index 0000000..eec2dd0 --- /dev/null +++ b/config.sample.json @@ -0,0 +1,14 @@ +{ + "client_secret": "nosenpaithisisoursecret", + "client_hostname": "0.0.0.0", + "client_port": 44300, + "threads": 16, + "graceful_shutdown_wait_seconds": 60, + "max_cache_size_in_mebibytes": 80000, + "max_kilobits_per_second": 0, + "max_mebibytes_per_hour": 0, + "web_settings": { + "ui_hostname": "127.0.0.1", + "ui_port": 8080 + } +}