forked from cmall/LocalHomePage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.php
68 lines (59 loc) · 1.85 KB
/
config.sample.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
*
* This is just a simple config file to store your web root and a few other items
*
* Change "/www/sites/*" to the directory where you keep your sites.
* Add multiple directories like this:
*
* $dir = array("/www/sites1/*","/www/sites2/*");
*
*/
/** directory name(s) */
$dir = array("/Users/username/Sites/*");
/** Your local top level domain */
$tld = 'dev';
/*
*
* Icon file names you would like to display next to the link to each site.
* In order of the priority they should be used.
*
*/
$icons = array( 'apple-touch-icon.png', 'favicon.ico' );
/*
*
* Development tools you want displayed in the top navigation bar. Each item should be
* an array containing keys 'name' and 'url'. An example is included (commented out) below.
*
*/
$devtools = array(
// array( 'name' => 'Tool', 'url' => 'http://example.com/' ),
array( 'name' => 'Web Host Admin', 'url' => 'http://example.com/' ),
array( 'name' => 'Github', 'url' => 'http://github.com/' ),
);
/*
*
* Options for sites being displayed. These are completely optional, if you don't set
* anything there are default options which will take over.
*
* If you only want to specify a display name for a site you can use the format:
*
* 'sitedir' => 'Display Name',
*
* Otherwise, if you want to set additional options you'll use an array for the options.
*
* 'sitedir' => array( 'displayname' => 'Display Name', 'adminurl' => 'http://example.sites.dev/admin' ),
*
*/
$siteoptions = array(
// 'dirname' => 'Display Name',
// 'dirname' => array( 'displayname' => 'DisplayName', 'adminurl' => 'http://something/admin' ),
);
/*
*
* Directory names of sites you want to hide from the page. If you're using multiple directories
* in $dir be aware that any directory names in the array below that show up in any of
* your directories will be hidden.
*
*/
$hiddensites = array( 'home', );