# setHttpServerSettings

Description: configure the HTTP server settings.

Request example:

{
    "method" : "setHttpServerSettings",
    "requestId" : "1",
    "settings" : {
        "port" : 7777
    }
}

Response example:

{
    "method": "setHttpServerSettings",
    "requestId" : "1",
    "result": true
}

Parameter description:

  • settings — the settings that should be changed:

    • port — Port for the HTTP server. Restarting the HTTP server is required for the changes to take effect.

    • connectionsLimit — Maximum number of concurrently processed connections. Restarting the HTTP server is required for the changes to take effect.

    • maxPostFileSizeInBytes — Maximum file value in bytes for the POST method. It applies immediately; restarting the HTTP server is not required.

  • requestId - a unique request identifier. You can learn more about it here.

See also: