summaryrefslogtreecommitdiffstats
path: root/web/lib/config.inc.php.proto
blob: 79f5e4c40eaa49e82112780621300579cf2f2380 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php

# 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_user", "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.
define("DEFAULT_LANG", "en");

# Enable debug sql output. This sends each query to error_log. Useful for
# development. Should not be enabled in production. Default to 0 (off).
define("SQL_DEBUG", 0);

# Set cache type. Either "APC", "MEMCACHE", or "NONE". Defaults to NONE.
#define("CACHE_TYPE", "APC");
#define("CACHE_TYPE", "MEMCACHE");

# If using memcache cache_type, list servers. You can separate multiple servers
# with a comma, ex: '127.0.0.1:11211,127.0.0.1:11212'. If undefined, defaults
# to '127.0.0.1:11211'.
#define("MEMCACHE_SERVERS", '127.0.0.1:11211');

# Languages we have translations for
$SUPPORTED_LANGS = array(
	"ca" => "Català",
	"cs" => "česky",
	"da" => "Dansk",
	"de" => "Deutsch",
	"en" => "English",
	"el" => "Ελληνικά",
	"es" => "Español",
	"fi" => "Finnish",
	"fr" => "Français",
	"he" => "עברית",
	"hr" => "Hrvatski",
	"hu" => "Magyar",
	"it" => "Italiano",
	"nb" => "Norsk",
	"nl" => "Dutch",
	"pl" => "Polski",
	"pt_BR" => "Português (Brasil)",
	"pt_PT" => "Português (Portugal)",
	"ro" => "Română",
	"ru" => "Русский",
	"sr" => "Srpski",
	"tr" => "Türkçe",
	"uk" => "Українська",
	"zh_CN" => "简体中文"
);

# 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;

# Uncompressed file size limit for submitted tarballs (ZIP bomb protection) -
# please ensure "upload_max_filesize" is additionally set to no more than 3M,
# otherwise this check might be easy to bypass (FS#22991 for details)
$MAX_FILESIZE_UNCOMPRESSED = 1024 * 1024 * 8;

# Allow HTTPs logins only
$DISABLE_HTTP_LOGIN = true;