aboutsummaryrefslogtreecommitdiff
blob: c31e60b4074d4eb8bd041dc72acdc11cd2b62607 (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
<?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 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");