{% extends "base.html" %} {% block content %}
UniData Connection

Configure your U2 UniData/UniVerse server connection. This will be saved to unidata_config.ini.

Identifier for this connection (e.g. production, test).
{% if errors.conn_port %}
{{ errors.conn_port }}
{% endif %}
{% if errors.conn_host %}
{{ errors.conn_host }}
{% endif %}
{% if errors.conn_username %}
{{ errors.conn_username }}
{% endif %}
{% if errors.conn_account %}
{{ errors.conn_account }}
{% endif %}
Full path to the U2 account directory on the server.
Connect automatically when the server starts.

Connections kept open at startup.
Maximum pool size per connection.
Server log verbosity.
Credentials encrypted before storage. The password is encrypted with Fernet (AES-128-CBC) derived from your JWT_SECRET_KEY before being written to unidata_config.ini.
Back
"Skip" skips the connection config — you can set it up later via unidata_config.ini or the Admin UI.
{% endblock %} {% block scripts %} {% endblock %}