This repository was archived by the owner on Oct 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.js
91 lines (77 loc) · 2.35 KB
/
config.example.js
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//application port
exports.port = 3000;
//absolute root path
exports.abspath = require('path').dirname(process.mainModule.filename);
//session secret (random string)
exports.tokensecret = require('crypto').randomBytes(20).toString('hex');
//LDAP settings
exports.ldap = {
"server": "10.12.114.138",
"port": 389,
"basedn": "dc=club,dc=hft-leipzig,dc=de",
"userbase": "ou=users",
"groupbase": "ou=groups",
"admindn": "cn=admin,dc=club,dc=hft-leipzig,dc=de",
"adminpw": ""
};
//MySQL settings
exports.dbcred = {
"host": "",
"port": 3306,
"user": "",
"password": "",
"database": ""
}
//SMTP settings
exports.smtp = {
"host": "securemail.hft-leipzig.de",
"port": 465,
"secure": true,
"auth": {
"user": "",
"pass": ""
}
};
exports.mailsettings = {
"from": "Studentenclub Stecker <[email protected]>",
"tplpath": exports.abspath + "/templates/email/"
};
//recipient for feedback emails
exports.feedbackmail = "[email protected], [email protected]";
//list of all door keys
exports.doorkeys = ["26", "180", "181", "182", "183"];
//secret key for public (but protected) resources
exports.pubaccesskey = "abcdefg";
//settings for git webhook deployment
exports.deploykey = "hijklmnop";
//protocols PDF settings
exports.protocols = {
bgJobInterval: 15, //interval [s] for background job checking
bgJobActive: 0, //activate background job handler
pdfFrontendPath: "/media/protocols/", //path in frontend folder for user generated PDF files
pdfDeleteTimeout: 30 //timeout [s] for deletion of user generated PDF files
}
exports.protocols.pdfFullPath = exports.abspath + "/frontend" + exports.protocols.pdfFrontendPath
//ICS URLs to show in calendar
exports.ics = {
"public": {
"name": "Öffentlich",
"url": "http://stura.hft-leipzig.de/events/club/events.ics",
"checkedByDefault": true
},
"internal": {
"name": "Intern",
"url": "http://stura.hft-leipzig.de/events/club/events.ics",
"checkedByDefault": true
},
"birthday": {
"name": "Club-Geburtstage",
"url": "http://stura.hft-leipzig.de/events/club/events.ics",
"checkedByDefault": true
},
"stura": {
"name": "Stura",
"url": "http://stura.hft-leipzig.de/events/stura/events.ics",
"checkedByDefault": false
}
}