{% extends 'base.html' %} {% block title %}SSH & API Keys{% endblock %} {% block content %}

SSH PUBLIC KEYS

{% if ssh_public_keys|length > 0 %}
{% endif %} {% for ssh_public_key in ssh_public_keys %}
{{ ssh_public_key['name'] }} {{ ssh_public_key['content'] }}
{% endfor %} {% if ssh_public_keys|length > 0 %}
{% endif %}

UPLOAD A NEW SSH PUBLIC KEY

(defaults to key comment)

Paste the contents of your SSH public key file here. ( Something like ~/.ssh/id_rsa.pub )

The contents of this file should look similar to ssh-rsa AAAAC3NzaC1l...Yqv== me@my-computer

If you wish, you can generate a new SSH key pair using the ssh-keygen utility.


API KEYS

{% if generated_api_token %}
Generated key: {{ generated_api_token }} {% endif %} {% if api_tokens|length >0 %}
{% endif %} {% for api_token in api_tokens %}
{{ api_token['name'] }} created {{ api_token['created'].strftime("%b %d %Y") }}
{% endfor %} {% if api_tokens|length >0 %}
{% endif %}

GENERATE A NEW API KEY

Generate a new API key, to integrate with other systems.

(defaults to creation time)
{% endblock %} {% block pagesource %}/templates/ssh-public-keys.html{% endblock %}