blob: 1d1cb2e261e41ed68f8e42308124fcf3ba17e7b2 (
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
|
<?php
// Gentoaster web interface settings
// Licensed under GPL v3, see COPYING file
// Path to the zonetab file
define("ZONETAB", "/usr/share/zoneinfo/zone.tab");
// Should we allow multiple simultaneous builds for a user?
define("SIMULTANEOUS_BUILDS", false);
// What should we set as the default list of packages?
define("DEFAULT_PACKAGES", "dhcpd");
// What should we limit the virtual machine disk size to?
define("MAX_DISK_SIZE", 16384);
// Set the MySQL access details that should be used
define("MYSQL_HOSTNAME", "localhost");
define("MYSQL_USERNAME", "gentoaster");
define("MYSQL_PASSWORD", "");
define("MYSQL_DATABASE", "gentoaster");
// Set the RECAPTCHA keys that should be used, if enabled
define("RECAPTCHA_ENABLED", false);
define("RECAPTCHA_PUBLIC_KEY", "REPLACE_ME");
define("RECAPTCHA_PRIVATE_KEY", "REPLACE_ME");
|