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:8000",
    },
    storage: StorageSettings {
        data_dir: Some(
            "./test_data/test_repos/",
        ),
        quota: Some(
            0,
        ),
    },
    auth: HtpasswdSettings {
        disable_auth: false,
        htpasswd_file: Some(
            "/test_data/test_repo/.htpasswd",
        ),
    },
    acl: AclSettings {
        disable_acl: true,
        append_only: false,
        acl_path: Some(
            "/test_data/test_repo/acl.toml",
        ),
    },
    tls: TlsSettings {
        disable_tls: false,
        tls_key: Some(
            "/test_data/test_repo/key.pem",
        ),
        tls_cert: Some(
            "/test_data/test_repo/cert.pem",
        ),
    },
    log: LogSettings {
        log_level: Some(
            "info",
        ),
        log_file: Some(
            "/test_data/test_repo/rustic.log",
        ),
    },
}