-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadditional.config.php
28 lines (27 loc) · 919 Bytes
/
additional.config.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
<?php
// see https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/config_sample_php_parameters.html
$CONFIG = [
'skeletondirectory' => '',
'share_folder' => '/shared_with_me',
'overwrite.cli.url' => $_ENV['OVERWRITEPROTOCOL'] . '://' . $_ENV['OVERWRITEHOST'] . $_ENV['OVERWRITEWEBHOST'],
# maintenance between 1 and 5 oclock
'maintenance_window_start' => 1,
'enabledPreviewProviders' => [
'OC\Preview\Font',
'OC\Preview\Movie',
'OC\Preview\MSOffice2003',
'OC\Preview\MSOffice2007',
'OC\Preview\MSOfficeDoc',
'OC\Preview\PDF',
'OC\Preview\Photoshop',
'OC\Preview\StarOffice',
'OC\Preview\SVG',
'OC\Preview\BMP',
'OC\Preview\GIF',
'OC\Preview\JPEG',
'OC\Preview\MarkDown',
'OC\Preview\MP3',
'OC\Preview\OpenDocument',
'OC\Preview\PNG',
],
];