You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
785 B
HTML
32 lines
785 B
HTML
{% extends 'pages/_install_base.html' %}
|
|
{% load i18n %}
|
|
{% load dltags %}
|
|
|
|
{% block pagetitle %}
|
|
{% trans "Install on macOS" %}
|
|
{% endblock %}
|
|
|
|
{% block wireguard_import %}
|
|
{% trans "Import the configuration in WireGuard."%}
|
|
{% endblock %}
|
|
|
|
{% block openvpn_setup %}
|
|
<ol>
|
|
<li>
|
|
{% blocktrans trimmed with url="https://tunnelblick.net/" %}
|
|
Download and install <a href="{{url}}">TunnelBlick</a>.
|
|
{% endblocktrans %}
|
|
</li>
|
|
<li>
|
|
{% blocktrans trimmed %}
|
|
In <a href="/account/config">your account</a>, download a .ovpn configuration file,
|
|
and import it in TunnelBlick.
|
|
{% endblocktrans %}
|
|
</li>
|
|
<li>
|
|
{% trans "Connect to the newly added connection." %}
|
|
</li>
|
|
</ol>
|
|
{% endblock %}
|
|
|