UniData Connections
Loaded from {{ ini_path }}
{% if not ini_found %}File not found{% endif %}
{% if not ini_found %}
No Configuration File Found
unidata_config.ini does not exist in the working directory.
Run the setup wizard to create it.
Open Setup Wizard
{% else %}
| Default connection |
{{ server.default_connection }} |
| Min connections |
{{ server.min_connections }} |
| Max connections |
{{ server.max_connections }} |
| Log level |
{{ server.log_level }} |
{% if not connections %}
No [connection:*] sections found in unidata_config.ini.
{% endif %}
{% for name, conn in connections.items() %}
| Host |
{{ conn.host }} |
| Port |
{{ conn.port }} |
| Username |
{{ conn.username }} |
| Password |
{% if conn.password_encrypted %}
Encrypted
{% else %}
Plaintext — re-run setup to encrypt
{% endif %}
|
| Account |
{{ conn.account }} |
| Service |
{{ conn.service }} |
{% endfor %}
{% if encryption_salt %}
Encryption active.
Passwords are stored as Fernet (AES-128-CBC) ciphertext.
Salt: {{ encryption_salt[:16] }}…
{% endif %}
{% endif %}