{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Trust the Local HTTPS Certificate" %}

{% if certificate_available %}

{% blocktrans with domain=certificate_domain %} Download the current HTTPS certificate for {{ domain }}, then add it to your device or browser trust store to remove the invalid certificate warning. {% endblocktrans %}

{% trans "Domain" %}
{{ certificate_domain }}
{% trans "File" %}
{{ certificate_filename }}
{% trans "Path" %}
{{ certificate_path }}
{% trans "Size" %}
{{ certificate_filesize|filesizeformat }}
{% trans "Last updated" %}
{{ certificate_modified|date:"DATETIME_FORMAT" }}

{% trans "Download certificate (.pem)" %}

  1. {% trans "Download the certificate file." %}
  2. {% trans "Open your OS/browser certificate manager." %}
  3. {% trans "Import the certificate and mark it as trusted." %}
  4. {% trans "Reload this site once the trust store update completes." %}

{% trans "Tip: On managed fleets, distribute the certificate with your MDM profile." %}

{% else %}

{% trans "No HTTPS certificate is currently available to download. Generate or assign a certificate in the NGINX site configuration first." %}

{% trans "Set up a self-signed certificate" %}

{% endif %}
{% endblock %}