-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.php
More file actions
50 lines (46 loc) · 2.55 KB
/
Copy pathconfiguration.php
File metadata and controls
50 lines (46 loc) · 2.55 KB
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
<?php
/**
+-------------------------------------------------------------------------+
| Rubify - An MiniDLNA Webapp |
| Version 1.0.0 |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation. |
| |
| This file forms part of the Rubify software. |
| |
| If you wish to use this file in another project or create a modified |
| version that will not be part of the Rubify Software, you |
| may remove the exception above and use this source code under the |
| original version of the license. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program. If not, see http://www.gnu.org/licenses/. |
| |
+-------------------------------------------------------------------------+
| Author: Jaime Rubio <jaime@rubiogafsi.com> |
+-------------------------------------------------------------------------+
*/
namespace Rubify\Framework;
defined('_RBFYEXEC') or die;
class RbfyConfig {
public $sitename = 'Rubify';
public $live_site = 'https://<your-site>';
public $use_cache = true;
public $use_symlink = false;
public $use_autolog = false;
public $enable_upload = true;
public $key = '<put-here-a-long-secured-key>';
public $list_limit = 60;
public $minidlna = [
'dir' => '/var/lib/minidlna',
'http' => 'http://192.168.1.1:8200'
];
public $theme = 'default';
}