Connection Info
{{ protocol }}
Remote Address
{{ remote_addr }}
{% if has_peer_cert %}
TLS Client Certificate
{% if common_name.is_some() %}
- CN
{{ common_name.as_ref().unwrap() }}
{% endif %}
- Fingerprint
{{ fingerprint }}
{% if !dns_names.is_empty() %}
- DNS
{{ dns_names.join(", ") }}
{% endif %} {% if !ip_addresses.is_empty() %}
- IPs
{{ ip_addresses.join(", ") }}
{% endif %} {% if !emails.is_empty() %}
- Emails
{{ emails.join(", ") }}
{% endif %} {% if !uris.is_empty() %}
- URIs
{{ uris.join(", ") }}
{% endif %}
{% else %}
No Client Certificate
mTLS not configured or client did not provide a certificate.
{% endif %}
Request
{{ method }} {{ path }}