This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yaml
46 lines (46 loc) · 1.61 KB
/
config.yaml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
options:
key-country:
type: string
default: "US"
description: Country field for RSA certificate.
key-province:
type: string
default: "CA"
description: Province field for RSA certificate.
key-city:
type: string
default: "Ubuntu"
description: City field for RSA certificate.
key-org:
type: string
default: "Juju"
description: Organization field for RSA certificate.
key-email:
type: string
default: "Juju"
description: Email field for RSA certificate.
clients:
type: string
default: "client1"
description: Space-separated list with names of users to generate config for.
port:
type: int
default: 443
description: Port for VPN traffic. Default is 443 since it isn't likely to be blocked by the firewall.
protocol:
type: string
default: tcp
description: Protocol for VPN communication (tcp|udp). Tcp on port 443 is least likely to be blocked by firewalls. Udp on port 1194 is fastest.
duplicate-cn:
type: boolean
default: True
description: Will multiple users connect using the same client config? (yes = True)
push-dns:
type: boolean
default: True
description: Should the connecting clients use the same DNS and search domain as the OpenVPN server? (yes = True)
push-default-gateway:
type: boolean
default: True
description: |
Do not set to false if you don't know what you're doing. Should the connecting clients use the VPN server for ALL connections? (yes = True) If this is False then the client will not use the VPN for ANY connections unless the client configures routes manually.