summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorNils Schwabe2014-04-23 15:00:19 +0200
committerNils Schwabe2014-04-23 15:00:19 +0200
commited9dca193a8ad68681393ea79c96bc84b6444639 (patch)
tree9533c1764de6864b8f8087995799d059072daf2c /config
parentFixed something (diff)
downloadmasterserver-ed9dca193a8ad68681393ea79c96bc84b6444639.tar.gz
masterserver-ed9dca193a8ad68681393ea79c96bc84b6444639.tar.xz
masterserver-ed9dca193a8ad68681393ea79c96bc84b6444639.zip
Fix some issues with FtpCredentialsScheduler
Add some options to config file
Diffstat (limited to 'config')
-rw-r--r--config/global.properties.example26
1 files changed, 21 insertions, 5 deletions
diff --git a/config/global.properties.example b/config/global.properties.example
index e2e1a3b..1b2ea39 100644
--- a/config/global.properties.example
+++ b/config/global.properties.example
@@ -4,9 +4,6 @@
# Directories #
#####################
-# the base dir of the ftp server (should exists)
-ftp_base_dir=/tmp
-
# the dir where the images are stored
image_dir=/tmp
@@ -29,6 +26,25 @@ 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\=%)) \ No newline at end of file
+ldap_search_filter=(&(objectclass\=person)(uid\=%))
+
+#####################
+# Session #
+#####################
+
+# session timeout for users (in minutes)
+session_timeout_user=30
+
+# session timeout for servers (in minutes)
+session_timeout_server=30
+
+#####################
+# FTP Server #
+#####################
+
+# the base dir of the ftp server (should exists)
+ftp_base_dir=/home/nils/ftp
+
+# the port of the ftp server
+ftp_port=2221 \ No newline at end of file