{% extends "base.html" %} {% set active_page = "index" %} {% block title %}HAProxy • Configuration{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{{ frontend_count|default(0) }}

Frontends

{{ backend_count|default(0) }}

Backends

{{ acl_count|default(0) }}

ACLs

L7: {{ layer7_count|default(0) }} / L4: {{ layer4_count|default(0) }}

Layers

{% if message %} {% endif %}
Add New Configuration
Frontend
Domain name for the ACL rule - traffic will be matched by Host header
Choose load balancing algorithm or simple single host
Full path to .pem file, upload certs in /ssl/
Creates additional frontend on port 80 to redirect HTTP to HTTPS backend
Name for the redirect backend that will push traffic to HTTPS

Backend

Headers & Security
Adds: http-response del-header Server (security)

Protection
e.g. 30m, 1h, 24h

Custom ACL Rules (Advanced)
Create additional routing or blocking rules beyond hostname matching
Unique identifier for this rule
Value to match (path, header name, IP, method)
Backend to send matching traffic to
URL to redirect matching requests to

{% endblock %}