127.0.0.1:9889 {
    import antiddos;
    type revHTTP;
    target https://example.org; # RRR
    
    querylimit 5;
    domain localhost {
        firewall whitelist GLOBAL;
        type revHTTP;
        target https://github.com;
    };
}

127.0.0.1:7889 {
    import example, example_custom_auth;
    type revHTTP;
    target https://google.com;
    auth loopback admin qwerty;
    #cauth admin 123;
    cert public ./tests/pub.crt;
    cert private ./tests/priv.key;
}

127.0.0.1:9999 {
    type redirectHTTP;
    target https://duckduckgo.com;
    domain localhost {
        type revHTTP;
        target https://google.com;
    }
}

127.0.0.1:8081 {
    type simpleHTTP;
    target /;
    #showdir;
}

127.0.0.1:1111 {
    type TCP;
    # SSH-Proxy to my device
    target 127.0.0.1:22;
}
