Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorCarla Schroder <carla@owncloud.com>2014-10-10 20:42:58 +0400
committerCarla Schroder <carla@owncloud.com>2014-10-10 20:42:58 +0400
commit6775c9ed32432bd3324f7c6191d50c6de44c3d4b (patch)
tree110a0fd8914b7c39c166e0a21f46b1df730c4811 /config
parent3f9cab00e3b2763cbf265db8006f7df3885c6ee4 (diff)
small corrections to config.sample.php
Diffstat (limited to 'config')
-rwxr-xr-xconfig/config.sample.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 02958ace0c2..63206938988 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -40,27 +40,32 @@ $CONFIG = array(
* This is a unique identifier for your ownCloud installation, created
* automatically by the installer. Do not change it.
*/
-'instanceid' => '',
+'instanceid' => 'd3c944a9a',
/**
* The salt used to hash all passwords, auto-generated by the ownCloud
* installer. (There are also per-user salts.) If you lose this salt you lose
* all your passwords.
*/
-'passwordsalt' => '',
+'passwordsalt' => 'd3c944a9af095aa08f',
/**
* Your list of trusted domains that users can log into. Specifying trusted
* domains prevents host header poisoning. Do not remove this, as it performs
* necessary security checks.
*/
-'trusted_domains' => array('demo.example.org', 'otherdomain.example.org:8080'),
+'trusted_domains' =>
+ array (
+ 0 => 'demo.example.org',
+ 1 => 'otherdomain.example.org:8080',
+ ),
+
/**
* Where user files are stored; this defaults to ``data/`` in the ownCloud
* directory. The SQLite database is also stored here, when you use SQLite.
*/
-'datadirectory' => '',
+'datadirectory' => '/var/www/owncloud/data',
/**
* The current version number of your ownCloud installation. This is set up
@@ -642,10 +647,11 @@ $CONFIG = array(
*/
/**
- * Blacklist a specific file and disallow the upload of files with this name
+ * Blacklist a specific file or files and disallow the upload of files
+ * with this name
* WARNING: USE THIS ONLY IF YOU KNOW WHAT YOU ARE DOING.
*/
-'blacklisted_files' => array('.htaccess'),
+'blacklisted_files' => array('filename1', 'filename2'),
/**
* Define a default folder for shared files and folders other than root.