-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(defaultConfigs): update from docker #613
based on d3341b61c1d41ac7fa98a34b8a3c6bc14c534efe
- Loading branch information
Showing
4 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<?php | ||
$CONFIG = array ( | ||
"apps_paths" => array ( | ||
'apps_paths' => array ( | ||
0 => array ( | ||
"path" => OC::$SERVERROOT."/apps", | ||
"url" => "/apps", | ||
"writable" => false, | ||
'path' => OC::$SERVERROOT.'/apps', | ||
'url' => '/apps', | ||
'writable' => false, | ||
), | ||
1 => array ( | ||
"path" => OC::$SERVERROOT."/custom_apps", | ||
"url" => "/custom_apps", | ||
"writable" => true, | ||
'path' => OC::$SERVERROOT.'/custom_apps', | ||
'url' => '/custom_apps', | ||
'writable' => true, | ||
), | ||
), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters