{% extends "base.html" %} {% block title %}Certificates - Hop3 Dashboard{% endblock %} {% block content %}

Certificates & domains

TLS certificate, domain-registration, and DNS health for each app's domain. Certificates renew automatically before expiry.

{% if alerts %}

{{ alerts|length }} issue{{ "s" if alerts|length != 1 else "" }} need attention

{% endif %} {% if rows %}
{% for c in rows %} {% endfor %}
App Domain Cert type Cert expiry Domain reg. DNS
{{ c.app_name }} {{ c.domain }} {{ c.kind }} {% if c.status == "ok" %} {{ c.days_left }}d {% elif c.status == "expiring" %} {{ c.days_left }}d {% elif c.status == "expired" %} Expired {% else %} Missing {% endif %} {{ (c.reg_days_left ~ "d") if c.reg_days_left is not none else "—" }} {% if c.dns == "ok" %} ok {% elif c.dns == "no DNS" or c.dns == "elsewhere" %} {{ c.dns }} {% else %} {{ c.dns }} {% endif %}
{% else %}
No apps have a managed TLS certificate yet.
{% endif %}
{% endblock %}