Support website publishing #7

Merged
lx merged 61 commits from feature/website into master 2021-01-15 16:49:51 +00:00
Showing only changes of commit 104e2ce0a2 - Show all commits

View file

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