blob: 0b26f75902761b24c47ceaf107fb3a0bd6791410 (
plain) (
blame)
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
|
# fill in properties and rename to global.properties
#####################
# Main #
#####################
# the dir where the images are stored
image_dir=/tmp
# keystore (.jks format)
keystore=./config/keystore.jks
#####################
# LDAP data #
#####################
# the port of the LDAP server
ldap_port=636
# the host address of the LDAP server
ldap_host=bv1.ruf.uni-freiburg.de
# SSL usage
ldap_ssl=true
# bind query (don't forget to escape \= and use a % for the username replacement
ldap_bind_query=uid\=%,ou\=people,dc\=uni-freiburg,dc\=de
# search baseDn
ldap_search_base_dn=ou\=people,dc\=uni-freiburg,dc\=de
# search filter (use a % for the username replacement
ldap_search_filter=(&(objectclass\=person)(uid\=%))
#####################
# Session #
#####################
# session timeout for users (in seconds)
session_timeout_user=600
# session timeout for servers (in seconds)
session_timeout_server=600
#####################
# FTP Server #
#####################
# the base dir of the ftp server (should exists)
ftp_base_dir=/tmp
# the port of the ftp server
ftp_port=2221
# timeout for kicking ftp users (in minutes)
ftp_timeout=60
|