mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-19 18:36:09 +02:00
debug mode
This commit is contained in:
parent
e6d024039f
commit
370289148f
6 changed files with 36 additions and 0 deletions
6
28/apache/config/log.config.php
Normal file
6
28/apache/config/log.config.php
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
if (getenv('NEXTCLOUD_DEGBUG_MODE') !== false) {
|
||||||
|
$CONFIG = array (
|
||||||
|
'debug' => true,
|
||||||
|
);
|
||||||
|
}
|
6
28/fpm-alpine/config/log.config.php
Normal file
6
28/fpm-alpine/config/log.config.php
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
if (getenv('NEXTCLOUD_DEGBUG_MODE') !== false) {
|
||||||
|
$CONFIG = array (
|
||||||
|
'debug' => true,
|
||||||
|
);
|
||||||
|
}
|
6
28/fpm/config/log.config.php
Normal file
6
28/fpm/config/log.config.php
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
if (getenv('NEXTCLOUD_DEGBUG_MODE') !== false) {
|
||||||
|
$CONFIG = array (
|
||||||
|
'debug' => true,
|
||||||
|
);
|
||||||
|
}
|
6
29/apache/config/log.config.php
Normal file
6
29/apache/config/log.config.php
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
if (getenv('NEXTCLOUD_DEGBUG_MODE') !== false) {
|
||||||
|
$CONFIG = array (
|
||||||
|
'debug' => true,
|
||||||
|
);
|
||||||
|
}
|
6
29/fpm-alpine/config/log.config.php
Normal file
6
29/fpm-alpine/config/log.config.php
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
if (getenv('NEXTCLOUD_DEGBUG_MODE') !== false) {
|
||||||
|
$CONFIG = array (
|
||||||
|
'debug' => true,
|
||||||
|
);
|
||||||
|
}
|
6
29/fpm/config/log.config.php
Normal file
6
29/fpm/config/log.config.php
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?php
|
||||||
|
if (getenv('NEXTCLOUD_DEGBUG_MODE') !== false) {
|
||||||
|
$CONFIG = array (
|
||||||
|
'debug' => true,
|
||||||
|
);
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue