-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv
66 lines (52 loc) · 1.76 KB
/
env
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
#--------------------------------------------------------------------
# _ __ _
# (_) / _| (_)
# __ __ _ | |_ _
# \ \ /\ / / | | | _| | |
# \ V V / | | | | | |
# \_/\_/ |_| |_| |_|
#--------------------------------------------------------------------
CI_ENVIRONMENT = production
#--------------------------------------------------------------------
# APPLICATION
#--------------------------------------------------------------------
app.baseURL = ''
#--------------------------------------------------------------------
# VOUCHER
#--------------------------------------------------------------------
voucher.maxQuota = 40
voucher.defaultQuota = 10
voucher.maxDuration = 180
voucher.defaultDuration = 45
#--------------------------------------------------------------------
# STUDENTS
#--------------------------------------------------------------------
# Please use multiples of two only
students.passwordLength = 8
students.cronIP = 0.0.0.0
students.clientPrefix = 'STUDENT_'
#--------------------------------------------------------------------
# ACTIVE DIRECTORY
#--------------------------------------------------------------------
ad.host = ''
ad.baseDN = ''
ad.username = ''
ad.password = ''
ad.adminGroup = ''
#--------------------------------------------------------------------
# UNIFI
#--------------------------------------------------------------------
unifi.baseURL = ''
unifi.username = ''
unifi.password = ''
unifi.sites = Site1,Site2
# Site1
unifi.site.Site1.group = UsersSite1
unifi.site.Site1.voucher = true
unifi.site.Site1.students = true
unifi.site.Site1.guestSSID = Guest
# Site2
unifi.site.Site2.group = UsersSite2
unifi.site.Site2.voucher = true
unifi.site.Site2.students = false
unifi.site.Site2.guestSSID = Guest