aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2016-12-30 15:24:36 -0600
committerMatt Rude <[email protected]>2016-12-30 15:24:36 -0600
commit7b7ef1233a59b8310142ed3829f132f97fce3e66 (patch)
tree82b9582a63513b32c3f843a341ec210b8984ba60
parent8abfd486b02b1e992783c3874ed338a5420b1f2a (diff)
downloadxmpp-site-builder-7b7ef1233a59b8310142ed3829f132f97fce3e66.tar.gz
xmpp-site-builder-7b7ef1233a59b8310142ed3829f132f97fce3e66.tar.bz2
xmpp-site-builder-7b7ef1233a59b8310142ed3829f132f97fce3e66.zip
Added fingerprint expires date and proxy fingerprint
-rw-r--r--index.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/index.md b/index.md
index 0112a09..0a2f4e4 100644
--- a/index.md
+++ b/index.md
@@ -85,7 +85,7 @@ Web Presence provides the status of a user via a image URL. Please see the page
{% if site.fingerprints == 1 %}
### Certificates Fingerprints
-One of the benefits of communicating via XMPP is the level of security involved. To allow users to validate the servers they are connecting to, below is the current fingerprints for each domain name.
+One of the benefits of communicating via XMPP is the level of security involved. To allow users to validate the servers they are connecting to, below is the current fingerprints for each domain name. {% if site.fingerprint-expires %} This certificate expires on {{ site.fingerprint-expires }}.{% endif %}
<div id="cert-table">
{% if site.fingerprint-sha1 %}
@@ -120,6 +120,22 @@ One of the benefits of communicating via XMPP is the level of security involved.
<pre>{{ site.fingerprint-conference-sha256 }}</pre>
</div>
{% endif %}
+{% if site.fingerprint-proxy-sha1 %}
+ <div class="cert-title">
+ <b>{{ site.xmpp-proxy-url }}<small> - SHA1 Fingerprint</small></b>
+ </div>
+ <div class="cert-content">
+ <pre>{{ site.fingerprint-proxy-sha1 }}</pre>
+ </div>
+{% endif %}
+{% if site.fingerprint-proxy-sha256 %}
+ <div class="cert-title">
+ <b>{{ site.xmpp-proxy-url }}<small> - SHA256 Fingerprint</small></b>
+ </div>
+ <div class="cert-content">
+ <pre>{{ site.fingerprint-proxy-sha256 }}</pre>
+ </div>
+{% endif %}
</div> <!-- Closing cert-table id div -->
{% endif %}