Configuration file format - orthanner/coreauth GitHub Wiki

jdbc {
    driver = "db.driver.class.Name"
    url = "jdbc:protocol:..."
    username = "sa"
    password = "..."
    connLimit = 16
}
tcp {
    port = 9876
}
udp {
    port = 9876
    iface = "..." //network interface to use for sending and receiving datagrams
    group = "..." //multicast group address
}
ssl {
    algorithm = "RSA"
    cipher = "RSA/ECB/OAEPWithSHA-256AndMGF1Padding"
    signature = "SHA512withRSA"
    streamCipher = "AES"
    key = "/path/to/key" //server's private key
    cert = "/path/to/certificate" //server's certificate
}