{% extends "base.html" %} {% block content %} {% from 'include/input_macros.html' import input, select %} {% include 'include/del_confirm.html' %}
{% for user in users %} {% include 'include/admin_users.html' %} {% endfor %}
Login name Password Active Email Role Group

+ Add

{% for group in groups %} {% if group.1 == "All" %} {% else %} {% endif %} {% endfor %}
Name Description
{{ group.1 }} {{ group.2 }} {% set id = 'name-' + group.0|string() %} {{ input(id, value=group.1) }} {% set id = 'descript-' + group.0|string() %} {% if group.2 != "None" %} {{ input(id, value=group.2, size='60') }} {% else %} {{ input(id, value='', size='60') }} {% endif %}

+ Add

How to setup groups you can watch in this video here
{% for server in servers %} {% include 'include/admin_servers.html' %} {% endfor %}
Hostname IP Port Group Enabled Virt HAProxy Nginx Slave for Credentials Description
{% set id = 'hostname-' + server.0|string() %} {{ input(id, value=server.1, size='10') }} {{server.2}} {% set id = 'port-' + server.0|string() %} {{ input(id, value=server.10, size='2') }}

+ Add

You can read the description of all parameters here or watch video here
{% for ssh in sshs %} {% endfor %}
Name SSH key Group Credentials
{% set id = 'ssh_name-' + ssh.0|string() %} {{ input(id, value=ssh.1, size='10') }} {% if ssh.2 == 1 %} {% else %} {% endif %}

{% set id = 'ssh_user-' + ssh.0|string() %} {{ input(id, value=ssh.3, size='10') }}

{% if ssh.2 == 1 %} {% else %} {% endif %}

+ Add

Upload SSH Key Key


Upload
You can read the description of all parameters here or watch video here
{% for telegram in telegrams %} {% endfor %}
Token Channel name Group
{% set id = 'telegram-token-' + telegram.0|string() %} {{ input(id, value=telegram.1, style="margin-bottom: 23px;") }} {% set id = 'telegram-chanel-' + telegram.0|string() %} {{ input(id, value=telegram.2) }}

+ Add

You can read the description of all parameters here
{% set section = namespace(section='') %} {% for set in settings %} {% if section.section|string() != set.2|string() %} {% endif %} {% set section.section = set.2 %} {% endfor %}
Parameter Value Description

{{ set.2 }} section

{{set.0}} {% if set.0 == 'ldap_password' %} {% if set.1 == 'None' %} {% else %} {% endif %} {% else %} {% if set.1 == 'None' %} {% else %} {% endif %} {% endif %} {{set.3}}
{% for s in services %} {% endfor %}
Service Actions Description
{% if s.1.0 == 'active' %} {% else %} {% if s.1.0 == 'inactive' or s.1.0 == 'failed' %} {% else %} {% endif %} {% endif %} {{s.0}} {{ s.2 }}
You can read about services here
{% set current_ver = versions.0 %} {% set new_ver = versions.1 %} {% set current_ver_without_dots = versions.2 %} {% set new_ver_without_dots = versions.3 %}
Currnet version Last version
{{current_ver}} {{new_ver}} {% if new_ver_without_dots > current_ver_without_dots and new_ver != "Sorry cannot get current version" %} Update {% endif %}
Note: For update you have to use HAProxy-WI repository. How start use repository read here

If server uses proxy to connection Internet add proxy settings in yum.conf

Read more about update in docs and changelog
{% for b in backups %} {% include 'include/admin_backup.html' %} {% endfor %}
Servers Remote server Remote folder Backup type Period time Credentials Description

+ Add a new backup job

You can read the description of all parameters here
{% include 'include/change_pass_form.html' %} {% endblock %}