aboutsummaryrefslogtreecommitdiff
blob: 30d6aa47d6f9083fc415dcab75c2d0dba31e02da (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", false);
    define("RECAPTCHA_PUBLIC_KEY","REPLACE_ME");
    define("RECAPTCHA_PRIVATE_KEY", "REPLACE_ME");