blob: b42cb8a061e37fcb05c7bcc8f28ad14a630360bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
$conf['title']='Ingenue'; // Used in <title>
$conf['sqlhost']='localhost'; // MySQL server
$conf['sqluser']='soc'; // MySQL username
$conf['sqlpass']='socpassword'; // MySQL password
$conf['sqldb']='soc'; // MySQL database
$conf['debug']=true; // Whether to print debugging information
$conf['cache']=true; // Whether to enable built-in caching
$conf['modules']='gentoo_portage x gentoo_catalyst'; // Space-separated list of modules to offer the user
$conf['cookiename']='ingenueid'; // Name of the cookie to send for keeping sessions
$conf['sessionlength']=1814400; // Time in seconds before sessions are purged
$conf['timezone']=10800; // Time difference in seconds between UTC and the default timezone
$conf['mod_rewrite']=true; // Use mod_rewrite for pretty URLs
$conf['emailfrom']='noreply@gentoo.org'; // Used as the From: field in emails
$conf['check_email_dns']=true; // Use DNS to check the domain of submitted emails for validity
$conf['pkgdir_root']='/home/eitan/soc/tinderbox'; // The directory to recursively search for pkgdirs in (Backend only)
$conf['emerge_default_opts']='-t -v -K --color=y --root-deps=rdeps'; // DON'T CHANGE UNLESS YOU KNOW WHAT YOU'RE DOING
$conf['portdir']='/usr/portage'; // The directory conatining the portage tree to use (/usr/portage unless you have a reason to think otherwise)
$conf['logview_max']=1000; // The maximum number of log entries shown on one page (1000 is a good start)
$conf['split_setup']=true; // Whether the frontend and backend are running on different hosts
$conf['frontend_location']='http://soc'; // The base address of the frontend installation (for use by the backend)
$conf['backend_id']='red'; // A name or other way of identifying this backend as opposed to other backends working for the same frontend TODO use gethostname() by default in 5.3.0
?>
|