blob: 6d5735ca77b8aed63e76b5fc327a5ab396fa964c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
// Gentoaster web interface settings
// Licensed under GPL v3, see COPYING file
// Path to the zonetab file
define("ZONETAB", "/usr/share/zoneinfo/zone.tab");
// 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", true);
define("RECAPTCHA_PUBLIC_KEY","REPLACE_ME");
define("RECAPTCHA_PRIVATE_KEY", "REPLACE_ME");
|