equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 // |
|
4 // CONFIGURATION |
|
5 // |
|
6 |
|
7 // Listen on all interfaces. If this is false, it will only listen on |
|
8 // 127.0.0.1 (the loopback interface) |
|
9 $public = true; |
|
10 |
|
11 // Allow control of playback. By default this is turned on but if you |
|
12 // set this to false, it will only display the playlist. |
|
13 $allowcontrol = true; |
|
14 |
|
15 // The default theme. This should be a name of a directory in ./themes. |
|
16 $theme = 'grey'; |
|
17 |
|
18 // Allow forking when an HTTP request is received. This has advantages |
|
19 // and disadvantages. If this experimental option is enabled, it will |
|
20 // result in faster responses and load times but more memory usage. |
|
21 $allow_fork = true; |
|
22 |
|
23 // set to true to enable authentication |
|
24 // this uses cookies, so make sure they're enabled in your browser |
|
25 $use_auth = false; |
|
26 |
|
27 // valid users and passwords |
|
28 $auth_data = array( |
|
29 'funky' => 'monkey', |
|
30 'fast' => 'forward' |
|
31 ); |
|
32 |