summaryrefslogtreecommitdiffstats
path: root/web/lib/config.inc.proto
blob: 3d3ec60e41da60e5439bb0d9809f9c0b98b02217 (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
43
44
45
<?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 );

# Language that messages are initially written in.
# This should never change.
define("DEFAULT_LANG", "en");

# Languages we have translations for
$SUPPORTED_LANGS = array(
	"ca" => "Català",
    "cs" => "česky",
	"de" => "Deutsch",
	"en" => "English",
	"es" => "Español",
	"fr" => "Français",
	"hu" => "Magyar",
	"it" => "Italiano",
	"pl" => "Polski",
	"pt" => "Português",
	"ro" => "Română",
	"ru" => "Русский",
	"sr" => "Srpski",
	"tr" => "Türkçe",
	"uk" => "Українська",
	"zh_CN" => "简体中文"
);

# Idle seconds before timeout
$LOGIN_TIMEOUT = 7200;