pub struct ServerConfig {
pub cors_allow_all: bool,
pub cors_allow_origins: String,
pub cors_allow_credentials: String,
pub cors_allow_methods: String,
pub cors_allow_headers: String,
pub cors_expose_headers: String,
pub cors_max_age: String,
pub csp: String,
pub log_format: String,
pub request_allocation_size: i64,
}Expand description
All runtime-configurable settings for one server instance.
Fields map 1-to-1 to RWS_CONFIG_* environment variable names documented
in Config. Default values match the environment-variable defaults.
Construct via ServerConfig::from_env() at startup or
ServerConfig::default() in tests.
Fields§
§cors_allow_all: boolRWS_CONFIG_CORS_ALLOW_ALL — when true, all cross-origin requests are
reflected back as allowed (echo the Origin header). Overrides all
other CORS fields. Default: true.
cors_allow_origins: StringRWS_CONFIG_CORS_ALLOW_ORIGINS — comma-separated list of allowed
origins when cors_allow_all is false. Default: "" (none).
cors_allow_credentials: StringRWS_CONFIG_CORS_ALLOW_CREDENTIALS — value for the
Access-Control-Allow-Credentials response header. Default: "".
cors_allow_methods: StringRWS_CONFIG_CORS_ALLOW_METHODS — value for
Access-Control-Allow-Methods. Default: "".
cors_allow_headers: StringRWS_CONFIG_CORS_ALLOW_HEADERS — value for
Access-Control-Allow-Headers. Default: "".
cors_expose_headers: StringRWS_CONFIG_CORS_EXPOSE_HEADERS — value for
Access-Control-Expose-Headers. Default: "".
cors_max_age: StringRWS_CONFIG_CORS_MAX_AGE — value for Access-Control-Max-Age.
Default: "86400".
csp: StringRWS_CONFIG_CSP — Content-Security-Policy header value. An empty
string suppresses the header entirely. Default: the framework default CSP.
log_format: StringRWS_CONFIG_LOG_FORMAT — "json" or "combined". Default: "json".
request_allocation_size: i64RWS_CONFIG_REQUEST_ALLOCATION_SIZE_IN_BYTES — bytes allocated for
incoming request parsing. Default: 10000.
Implementations§
Source§impl ServerConfig
impl ServerConfig
Sourcepub fn from_env() -> Self
pub fn from_env() -> Self
Build a ServerConfig by reading all RWS_CONFIG_* environment
variables. Missing variables fall back to their default values.
Call this once at startup (inside App::new()) rather than on every
request. For hot-reload, use config_reload::current() to get a
fresh snapshot after a SIGHUP/POST /admin/config/reload.
Trait Implementations§
Source§impl Clone for ServerConfig
impl Clone for ServerConfig
Source§fn clone(&self) -> ServerConfig
fn clone(&self) -> ServerConfig
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ServerConfig
impl Debug for ServerConfig
Source§impl Default for ServerConfig
impl Default for ServerConfig
Source§impl PartialEq for ServerConfig
impl PartialEq for ServerConfig
Source§fn eq(&self, other: &ServerConfig) -> bool
fn eq(&self, other: &ServerConfig) -> bool
self and other values to be equal, and is used by ==.