blob: ef32710f3255c154cc53ffce17beda722d575342 (
plain)
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
|
# This is the default configuration for the Fripost Administration
# Panel. It is best not to modify this file as many of the keys here are
# mandatory. Custom configuration should be but in `config.in' instead,
# which overrides the below.
# Non absolute paths are be relative to this directory.
pwd = ./
# Directory for templates
tmpl_path = template/
# Session configuration
#
# Where to put the session database on our server
session_db_filename = /tmp/fpanel-cgisessions.db
# The name of the cookies sent to the users
session_authname = FripostAdminPanel_SessAuth
# When does the session expire
session_expire = +24h
# Turn on the 'secure' flag before sending a cookie
secure_cookie = 1
# The path attribute for the sent cookies
cgi-bin = /cgi-bin/
# A timeout for idle connections, after which the user is automatically
# logged out
timeout = 30m
# The minimum password length.
password_min_length = 8
# LDAP configuration
ldap_uri =ldap://127.0.0.1:389
|