{% extends "base.html" %}
{% block content %}
{% from 'include/input_macros.html' import input, select %}
{% include 'include/del_confirm.html' %}
Login name |
Password |
Active |
Email |
Role |
Group |
|
|
{% for user in users %}
{% include 'include/admin_users.html' %}
|
|
|
|
{% endfor %}
+ Add
Name |
Description |
|
{% for group in groups %}
{% if group.1 == "All" %}
{{ group.1 }} |
{{ group.2 }} |
|
{% else %}
{% 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 %}
|
|
{% endif %}
{% endfor %}
+ Add
How to setup groups you can watch in this video
here
Hostname |
IP |
Port |
Group |
Enabled |
Virt
|
HAProxy |
Nginx |
Slave for
|
Credentials |
Description |
|
|
{% for server in servers %}
{% 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') }}
|
|
{% include 'include/admin_servers.html' %}
{% endfor %}
+ Add
You can read the description of all parameters
here
or watch video
here
{% include 'include/admin_ssh.html' %}
Token
|
Channel name |
Group |
|
|
{% for telegram in telegrams %}
{% set id = 'telegram-token-' + telegram.0|string() %}
{{ input(id, value=telegram.1, size='30') }}
|
{% set id = 'telegram-chanel-' + telegram.0|string() %}
{{ input(id, value=telegram.2) }}
|
|
|
|
{% endfor %}
+ Add
You can read the description of all parameters
here
{% include 'include/admin_settings.html' %}
Service
|
Actions
|
Description |
{% for s in services %}
{% if s.1.0 == 'active' %}
{% else %}
{% if s.1.0 == 'inactive' or s.1.0 == 'failed' %}
{% else %}
{% endif %}
{% endif %}
{{s.0}}
|
|
{{ s.2 }}
|
{% endfor %}
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
{% include 'include/admin_backup.html' %}
{% include 'include/mon_installation.html' %}
{% include 'include/admins_dialogs.html' %}
{% include 'include/change_pass_form.html' %}