{% extends "base.html" %} {% block content %}
{% if services|length == 0 %}
No service to show
{% else %}{% for services_batched in services|batch(3) %} {% for service in services_batched %} {% set id_server_name = service["SERVER_NAME"]['value'].replace(".", "-") %}
{{ service["SERVER_NAME"]['value'] }}
{{ service["SERVER_NAME"]['method'] }}

Reverse proxy

{% if service['USE_REVERSE_PROXY']['value'] == 'yes' %} yes {% else %} no {% endif %}

Serve files

{% if service['SERVE_FILES']['value'] == 'yes' %} yes {% else %} no {% endif %}

Remote PHP

{% if service['REMOTE_PHP']['value'] != '' %} yes {% else %} no {% endif %}

HTTPS

{% if service['AUTO_LETS_ENCRYPT']['value'] == 'yes' or service['USE_CUSTOM_SSL']['value'] == 'yes' or service['GENERATE_SELF_SIGNED_SSL']['value'] == 'yes' %} yes {% else %} no {% endif %}

ModSecurity

{% if service['USE_MODSECURITY']['value'] == 'yes' %} yes {% else %} no {% endif %}

Bad Behavior

{% if service['USE_BAD_BEHAVIOR']['value'] == 'yes' %} yes {% else %} no {% endif %}

Limit req

{% if service['USE_LIMIT_REQ']['value'] == 'yes' %} yes {% else %} no {% endif %}

DNSBL

{% if service['USE_DNSBL']['value'] == 'yes' %} yes {% else %} no {% endif %}

{% if service["SERVER_NAME"]['method'] == "ui" %} {% endif %}
{% endfor %} {% endfor %}{% endif %}
{% include "services_modal.html" %} {% endblock %}