diff options
author | Frank Karlitschek <frank@dev.(none)> | 2010-03-29 16:21:00 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@dev.(none)> | 2010-03-29 16:21:00 +0200 |
commit | 2a75c0d04495c5f05fdaaebf94d38ea6d0a3f062 (patch) | |
tree | 9aac3d2e18fa5a12d24a34bc85ffe6c7bc9b5198 /config | |
parent | bc8e899de1336e839079b5059e51e4dc75262728 (diff) | |
download | nextcloud-server-2a75c0d04495c5f05fdaaebf94d38ea6d0a3f062.tar.gz nextcloud-server-2a75c0d04495c5f05fdaaebf94d38ea6d0a3f062.zip |
merge Adityas improvements
Diffstat (limited to 'config')
-rw-r--r--[-rwxr-xr-x] | config/config.php | 4 | ||||
-rwxr-xr-x | config/config.sample.php | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/config/config.php b/config/config.php index 170006a6969..acb6c3546c6 100755..100644 --- a/config/config.php +++ b/config/config.php @@ -1,2 +1,2 @@ -<?php -?> +<?php +?> diff --git a/config/config.sample.php b/config/config.sample.php new file mode 100755 index 00000000000..dfaaa4284d6 --- /dev/null +++ b/config/config.sample.php @@ -0,0 +1,11 @@ +<?php +$CONFIG_ADMINLOGIN='admin-username'; +$CONFIG_ADMINPASSWORD='password'; +$CONFIG_DATADIRECTORY='write/absolute-drectory/path/here/'; +$CONFIG_HTTPFORCESSL=false; +$CONFIG_DATEFORMAT='j M Y G:i'; +$CONFIG_DBHOST='localhost'; +$CONFIG_DBNAME='owncloud-db-name'; +$CONFIG_DBUSER='user-name'; +$CONFIG_DBPASSWORD='password'; +?> |