Newer
Older
# NOTE: modify these variables if your MySQL setup is different
define( "AUR_db_host", "localhost:/var/run/mysqld/mysqld.sock" );
define( "AUR_db_name", "AUR" );
define( "AUR_db_pass", "aur" );
# Configuration of directories where things live
define( "UPLOAD_DIR", "/srv/aur/unsupported-temp/" );
define( "INCOMING_DIR", "/srv/aur/unsupported/" );
define( "URL_DIR", "/packages/" );
define( "USERNAME_MIN_LEN", 3 );
define( "USERNAME_MAX_LEN", 16 );
define( "PASSWD_MIN_LEN", 4 );
define( "PASSWD_MAX_LEN", 128 );
# Default language for displayed messages in the web interface.
# Languages we have translations for
$SUPPORTED_LANGS = array(
"en" => "English",
"es" => "Español",
"fr" => "Français",
"it" => "Italiano",
"pt" => "Português",
"ru" => "Русский",
);
# Session limit per user
$MAX_SESSIONS_PER_USER = 8;
# Idle seconds before timeout
$LOGIN_TIMEOUT = 7200;
# Session timeout when using "Remember me" cookies
$PERSISTENT_COOKIE_TIMEOUT = 60 * 60 * 24 * 30;