Struct sozu_command_lib::config::ProxyConfig [] [src]

pub struct ProxyConfig {
    pub proxy_type: ProxyType,
    pub address: String,
    pub public_address: Option<String>,
    pub port: u16,
    pub max_connections: usize,
    pub buffer_size: usize,
    pub channel_buffer_size: Option<usize>,
    pub answer_404: Option<String>,
    pub answer_503: Option<String>,
    pub tls_versions: Option<Vec<String>>,
    pub cipher_list: Option<String>,
    pub worker_count: Option<u16>,
    pub default_name: Option<String>,
    pub default_app_id: Option<String>,
    pub default_certificate: Option<String>,
    pub default_certificate_chain: Option<String>,
    pub default_key: Option<String>,
    pub log_level: Option<String>,
    pub log_target: Option<String>,
}

Fields

Methods

impl ProxyConfig
[src]

Trait Implementations

impl Debug for ProxyConfig
[src]

Formats the value using the given formatter.

impl Clone for ProxyConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ProxyConfig
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ProxyConfig
[src]

impl Hash for ProxyConfig
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.