-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy patheasy-gate.json
69 lines (69 loc) · 1.51 KB
/
easy-gate.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"addr": "0.0.0.0:8080",
"use_tls": false,
"cert_file": "",
"key_file": "",
"behind_proxy": false,
"title": "Easy Gate",
"theme": {
"background": "#FFFFFF",
"foreground": "#000000"
},
"groups": [
{
"name": "internal",
"subnet": "192.168.1.1/24"
},
{
"name": "vpn",
"subnet": "10.8.1.1/24"
}
],
"services": [
{
"name": "Git",
"category": "",
"url": "https://git.example.internal",
"groups": [
"internal",
"vpn"
]
},
{
"name": "Files",
"category": "",
"url": "https://files.example.internal",
"groups": [
"internal"
]
},
{
"name": "Google",
"category": "",
"url": "https://www.google.com",
"groups": []
},
{
"name": "Youtube",
"category": "",
"url": "https://www.youtube.com",
"groups": []
}
],
"notes": [
{
"name": "Simple note",
"text": "This is a simple note for vpn users",
"groups": [
"vpn"
]
},
{
"name": "Another note",
"text": "Another note for internal users only",
"groups": [
"internal"
]
}
]
}