{% extends 'node/cluster/index.html' %} {% block toolbar_server %}class="active"{%endblock%} {% block clustering_content %}

In this mode, the node serves as a configuration server. Other nodes periodically download configuration settings from this node. Configuration is downloaded by HTTPS with mutual validation of client and server Root CA certificate. Please note you MUST have the same Root CA certificate installed on all clustered machines. Be sure NOT to use default Root CA!

{% if form.non_field_errors %}
ERROR: {% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.listen_address}} {% if form.listen_address.errors %} {{form.listen_address.errors|striptags}} {% else %} Local address this node listens on. Leave this field blank to listen on all available network interfaces. Configured client nodes will periodically connect to this server address. {%endif%}
{{form.listen_port}}
{% if form.listen_port.errors %} {{form.listen_port.errors|striptags}} {% else %} Local port the server will listen for incoming requests from other nodes. Default value is 18999. {%endif%}
{% endblock %}