diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-29 17:43:59 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-29 17:43:59 +0200 |
commit | 62eb5cd6b0859dee266cddc240f3e1e788f871fa (patch) | |
tree | 1417d071b7c78fdd42adf150642b927b65ae59ae /config | |
parent | 9fba8221a6760b67b507067e5ea4ca9341c77241 (diff) | |
download | nextcloud-server-62eb5cd6b0859dee266cddc240f3e1e788f871fa.tar.gz nextcloud-server-62eb5cd6b0859dee266cddc240f3e1e788f871fa.zip |
Add a warning to the configuration file
Some people believe that they should copy the sample config to the "real" config. I noticed this several times in IRC and on the bugtracker.
I guess this warning should be enough to avoid this in the future.
Diffstat (limited to 'config')
-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..bf0ec468ad3 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 copy configurations switches that you consider important for your instance manually 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); |