rustic_server 0.4.4

rustic server - a REST server built in rust to use with rustic and restic.
Documentation
---
source: src/config.rs
expression: config
---
RusticServerConfig {
    server: ConnectionSettings {
        listen: 127.0.0.1:8080,
    },
    storage: StorageSettings {
        data_dir: Some(
            "tests/generated/test_storage/",
        ),
        quota: None,
    },
    auth: HtpasswdSettings {
        disable_auth: false,
        htpasswd_file: Some(
            "tests/fixtures/test_data/.htpasswd",
        ),
    },
    acl: AclSettings {
        disable_acl: false,
        private_repos: true,
        append_only: false,
        acl_path: Some(
            "tests/fixtures/test_data/acl.toml",
        ),
    },
    tls: TlsSettings {
        disable_tls: false,
        tls_key: Some(
            "tests/fixtures/test_data/certs/test.key",
        ),
        tls_cert: Some(
            "tests/fixtures/test_data/certs/test.crt",
        ),
    },
    log: LogSettings {
        log_level: None,
        log_file: None,
    },
}