Added `config.sample.json` sample client configuration file

This commit is contained in:
Amos Ng 2020-06-22 11:57:01 +08:00
parent 43089ed1ca
commit 79e45eed4c
No known key found for this signature in database
GPG Key ID: 89086414F634D123
2 changed files with 15 additions and 0 deletions

View File

@ -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

14
config.sample.json Executable file
View File

@ -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
}
}