mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
{% from 'include/input_macros.html' import input, checkbox %}
|
|
<tr>
|
|
<td class="padding20">
|
|
New hostname
|
|
<span class="need-field">*</span>
|
|
</td>
|
|
<td>{{ input('new-server-add') }}</td>
|
|
<tr>
|
|
<td class="padding20">
|
|
IP
|
|
<span class="need-field">*</span>
|
|
</td>
|
|
<td>{{ input('new-ip', size='14') }}</td>
|
|
<tr>
|
|
<td class="padding20" title="SSH port">
|
|
Port
|
|
<span class="need-field">*</span>
|
|
</td>
|
|
<td>{{ input('new-port', value='22', size='1') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding20">Enable</td>
|
|
<td>{{ checkbox('enable', checked='checked') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding20" title="Vitrual IP, something like VRRP">Virt</td>
|
|
<td>{{ checkbox('typeip') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding20" title="Is there HAProxy?">HAProxy</td>
|
|
<td>{{ checkbox('haproxy') }} </td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding20" title="Is there Nginx?">Nginx</td>
|
|
<td>{{ checkbox('nginx') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding20" title="Actions with master config will automatically apply on slave">Slave for</td>
|
|
<td>
|
|
<select id="slavefor">
|
|
<option value="0" selected>Not slave</option>
|
|
{% for master in masters %}
|
|
<option value="{{master.0}}">{{master.1}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding20">Description</td>
|
|
<td>{{ input('desc', size='30') }}</td>
|
|
</tr> |