diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-25 08:16:53 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-25 08:16:53 +0000 |
commit | 0237890676fd9556db8d8505e0b84a652eaff33d (patch) | |
tree | 27290f937091e5db928596cc3061dd984a1dc468 /config/ampache.cfg.php.dist | |
parent | d36f8bdb45c6586807aa37b4ac32acf6de973269 (diff) | |
download | ampache-0237890676fd9556db8d8505e0b84a652eaff33d.tar.gz ampache-0237890676fd9556db8d8505e0b84a652eaff33d.tar.bz2 ampache-0237890676fd9556db8d8505e0b84a652eaff33d.zip |
hopefully fixed mysql5 problems with vauth as well as the remember me mojo for rubin
Diffstat (limited to 'config/ampache.cfg.php.dist')
-rw-r--r-- | config/ampache.cfg.php.dist | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index 9635e530..6714eff3 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -16,19 +16,15 @@ # DEFAULT: "" #web_path = "" -#################### -# The libglue Vars # -#################### +############################### +# Session and Login Variables # +############################### -### -# Below are the variables for the Local Database that will do Auth -### - -# Hostname of your Database (default is localhost) +# Hostname of your Database # DEFAULT: localhost local_host = localhost -# Name of your ampache database (default is ampache) +# Name of your ampache database # DEFAULT: ampache local_db = ampache @@ -36,14 +32,24 @@ local_db = ampache # DEFAULT: "" local_username = username -# Password for your ampache database (can't be blank!) +# Password for your ampache database, this can not be blank +# this is a 'forced' security precaution, the default value +# will not work # DEFAULT: "" local_pass = password -# Login Length in seconds for local logins +# Length that a session will last, the default is very restrictive +# at 15min # DEFAULT: 900 local_length = 900 +# This length defines how long a 'remember me' session and cookie will +# last, the default is 900, same as length. It is up to the administrator +# of the box to increase this, for reference 86400 = 1 day +# 604800 = 1 week and 2419200 = 1 month +# DEAFULT: 900 +remember_length = 900 + # This is the DOMAIN for the cookie that stores your session key # this must be set to the domain of your host or you will not be # able to log in make sure you including the leading . |