Add "web" configuration entry

This commit is contained in:
Quentin 2020-10-31 17:28:56 +01:00
parent 5faf069e33
commit 104e2ce0a2
1 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,8 @@ pub struct Config {
pub rpc_tls: Option<TlsConfig>,
pub s3_api: ApiConfig,
pub s3_web: WebConfig,
}
#[derive(Deserialize, Debug, Clone)]
@ -50,6 +52,11 @@ pub struct ApiConfig {
pub s3_region: String,
}
#[derive(Deserialize, Debug, Clone)]
pub struct WebConfig {
pub website_bind_addr: SocketAddr,
}
fn default_max_concurrent_rpc_requests() -> usize {
12
}