Doradus REST API Parameters These parameters configure the Doradus REST API. restaddr: 0.0.0.0 By default, the Doradus REST API binds to address 0.0.0.0, which means it accepts connections directed to any of the host’s IP addresses (including “localhost”). Change this value if you want the REST API to accept connections on a specific IP address instead. restport: 1123 This is the REST port that Doradus listens to. Change this to accept REST API connections on a different port. maxconns: 200 This is parameter is used to configure the maximum threads that the internal Jetty server allows. More than this number of connections may be received, but this value controls the maximum number of parallel REST commands that may be in progress at one time. tls: false tls_cipher_suites: - TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA ... clientauthentication: false keystore: config/keystore keystorepassword: changeit truststore: config/truststore truststorepassword: password As described in the section Doradus Security Options, these parameters should be set to configure TLS/SSL for the Doradus REST API and to restrict connections to authenticated clients. max_request_size: 52428800 This parameter determines the maximum size of an input requested that is accepted. Requests larger than this are rejected and the socket is closed. The default is 50MB.