diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-30 16:17:19 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-30 16:17:19 +0200 |
commit | 59b1f4c476f72f55585f74d261707e6a4a4bbfb9 (patch) | |
tree | f0c386254409971ada68ac9e9b1bad06fc961fe5 | |
parent | 31ad1cbdd8884844fb58cd6140fb2a0387ebe5e2 (diff) | |
parent | bb8ee2e9afc390ae81eb58081b16a1ada8316b3c (diff) | |
download | nextcloud-server-59b1f4c476f72f55585f74d261707e6a4a4bbfb9.tar.gz nextcloud-server-59b1f4c476f72f55585f74d261707e6a4a4bbfb9.zip |
Merge pull request #8781 from owncloud/add-a-warning-to-the-sample
Add a warning to the configuration file
-rwxr-xr-x | config/config.sample.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 80694837edc..590aba714eb 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1,5 +1,11 @@ <?php +/** + * This configuration file is only provided to document the different configuration options and their usage. + * DO NOT COMPLETELY BASE YOUR CONFIGURATION FILE ON THIS SAMPLE. THIS MAY BREAK YOUR INSTANCE. + * Instead, manually copy configurations' switches that you consider important for your instance to your configuration. + */ + /* Only enable this for local development and not in productive environments */ /* This will disable the minifier and outputs some additional debug informations */ define("DEBUG", true); |