{% extends "base.html" %} {% block content %} {% from 'include/input_macros.html' import input, checkbox %}
Server Disable/Enable server or output any information Command Save change
{% include 'include/select.html' %}
{{ input('servbackend', value=servbackend, title='Frontend, backend/server, show: info, pools or help', required='required') }} {% if role <= 2 %} {{ checkbox('save', value='123') }} {% endif %}
You can read the description of all Run Time API here
{% if role <= 2 %}
Server Choose Frontend Maxconn
{{ input('maxconnint', title='Enter maxconn', type="number", required='required') }}
You can read how it works here
Server Choose Backend Choose Server New IP New Port
{{ input('backend_ip', title='Set new server IP', required='required', size='16') }} {{ input('backend_port', title='Set new server Port', type="number", required='required', size='6') }}
You can read how it works here
Server Choose Table
You can read how it works here
Server Choose List
You can read how it works here
{% endif %}
{% endblock %}