mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- RSA to ECC migration was introduced in October 2020 is available to Buster (via backports) and to Bullseye users. Dropping the code will make it easy to test regular maintenance code updates. - A two step setup process of first installing and then setting up the certificates is no longer necessary. (New installs already don't use this). The certificate generation process does not take hours but minutes. We also have a good progress indication during install+setup process. Tests: - Functional tests pass. - Initial setup completes successfully and does not take very long time. - Profiles can be downloaded successfully and imported. - A client an use them to connect. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
38 lines
997 B
HTML
38 lines
997 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block configuration %}
|
|
|
|
<h3>{% trans "Profile" %}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
To connect to {{ box_name }}'s VPN, you need to download a profile and
|
|
feed it to an OpenVPN client on your mobile or desktop machine. OpenVPN
|
|
Clients are available for most platforms. Click "Learn more..." above for
|
|
recommended clients and instructions on how to configure them.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Profile is specific to each user of {{ box_name }}. Keep it a secret.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<form class="form form-profile" method="post"
|
|
action="{% url 'openvpn:profile' %}">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-primary no-running-status"
|
|
value="{% trans "Download my profile" %}"/>
|
|
</form>
|
|
|
|
{% endblock %}
|