aurweb/web/lib/config.inc.proto
Simo Leone 7bad8a8357 Removed QBUG and DBUG
It was broken and hardly used. It's just as easy
to add short print statements or logging if
some debugging output is needed.

Signed-off-by: Simo Leone <simo@archlinux.org>
2008-01-23 02:51:33 -06:00

34 lines
925 B
Protocol Buffer

<?php
# NOTE: modify these variables if your MySQL setup is different
#
define( "AUR_db_host", "localhost:/tmp/mysql.sock" );
define( "AUR_db_name", "aur" );
define( "AUR_db_user", "aur" );
define( "AUR_db_pass", "aur" );
# Configuration of directories where things live
define( "UPLOAD_DIR", "/home/aur/unsupported-temp/" );
define( "INCOMING_DIR", "/home/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 );
$LOGIN_TIMEOUT = 7200; # number of idle seconds before timeout
$SUPPORTED_LANGS = array( # what languages we have translations for
"en" => "English",
"pl" => "Polski",
"it" => "Italiano",
"ca" => "Català",
"pt" => "Português",
"es" => "Español",
"de" => "Deutsch",
"ru" => "Русский",
"fr" => "Français"
);
# vim: ts=2 sw=2 noet ft=php
?>