Makes default lemonldap-ng.ini easier to read (Lemonldap-433)

This commit is contained in:
François-Xavier Deltombe 2012-02-09 17:18:51 +00:00
parent ea3d997038
commit 52b2dec3e4

View File

@ -82,9 +82,21 @@ dirName=/var/lib/lemonldap-ng/conf
# to choose a Cache::Cache module and set it's parameters (1 line). Example:
#
# localStorage = Cache::FileCache
# localStorageOptions = { 'namespace' => 'MyNamespace', 'default_expires_in' => 600, 'directory_umask' => '007', 'cache_root' => '/tmp', 'cache_depth' => 5, }
# localStorageOptions={ \
# 'namespace' => 'MyNamespace', \
# 'default_expires_in' => 600, \
# 'directory_umask' => '007', \
# 'cache_root' => '/tmp', \
# 'cache_depth' => 5, \
# }
localStorage=Cache::FileCache
localStorageOptions={ 'namespace' => 'MyNamespace', 'default_expires_in' => 600, 'directory_umask' => '007', 'cache_root' => '/tmp', 'cache_depth' => 5, }
localStorageOptions={ \
'namespace' => 'MyNamespace', \
'default_expires_in' => 600, \
'directory_umask' => '007', \
'cache_root' => '/tmp', \
'cache_depth' => 5, \
}
[portal]