-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·33 lines (28 loc) · 1.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: default
---
<h2>Regional OpenVPN Configurations</h2>
<p>We use our own private DNS servers for your DNS queries while on the VPN. And our Smart DNS automatically routes some websites via the US, even when you're using a server in Europa.</p>
<div class="configs">
{% for country in site.data.config %}
<div class="config">
<h3>
{{ country.name }}
</h3>
<p>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}" class="btn">Download</a>
</p>
Other encryptions:<br/>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}/64" class="encryption">64 Bits</a>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}/128" class="encryption">128 Bits</a>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}/256" class="encryption">256 Bits</a>
<br/><br/>Other ports:<br/>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}/443" class="encryption">TCP 443</a>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}/80" class="encryption">TCP 80</a>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}/53" class="encryption">UDP 53</a>
<a href="https://vpn.ht/openvpn-config/{{ country.code }}/3389" class="encryption">UDP 3389</a>
</div>
{% endfor %}
</div>
<hr>
<p>© {{ site.time | date: '%Y' }} <a href="https://vpn.ht/">VPN.ht</a></p>