diff options
author | Frank Karlitschek <frank@dev.(none)> | 2010-03-10 13:03:40 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@dev.(none)> | 2010-03-10 13:03:40 +0100 |
commit | 16f3bd4e2334491152510598f861a1f6c1ecdae2 (patch) | |
tree | 73370c91c4259f9f20f90137c2e39f366d6d078a /config | |
parent | ef2028148691c01c1841745fde9868ce27d9a3a5 (diff) | |
download | nextcloud-server-16f3bd4e2334491152510598f861a1f6c1ecdae2.tar.gz nextcloud-server-16f3bd4e2334491152510598f861a1f6c1ecdae2.zip |
commiting ownCloud 1.0 beta 1v1.0.0beta1
Diffstat (limited to 'config')
-rwxr-xr-x | config/config.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/config/config.php b/config/config.php new file mode 100755 index 00000000000..ed699d28a4f --- /dev/null +++ b/config/config.php @@ -0,0 +1,43 @@ +<?php + + +// Owner +$CONFIG_FOOTEROWNERNAME = 'Frank Karlitschek'; +$CONFIG_FOOTEROWNEREMAIL = 'karlitschek@kde.org'; + + +// ADMIN ACCOUNT +$CONFIG_ADMINLOGIN = 'frank'; +$CONFIG_ADMINPASSWORD = '123'; + + +// DB Config +$CONFIG_DBHOST = 'localhost'; +$CONFIG_DBNAME = 'owncloud'; +$CONFIG_DBUSER = 'owncloud'; +$CONFIG_DBPWD = 'owncloud12345'; + +// directories +$CONFIG_DATADIRECTORY = '/www/testy'; +$CONFIG_DOCUMENTROOT = '/www/owncloud/htdocs'; + + +// force SSL +$CONFIG_HTTPFORCESSL = false; + + +// other +$CONFIG_DATEFORMAT = 'j M Y G:i'; + +// plugins +//$CONFIG_LOADPLUGINS = 'music test'; +$CONFIG_LOADPLUGINS = ''; + + +// set the right include path +// donĀ“t change unless you know what you are doing +set_include_path(get_include_path().PATH_SEPARATOR.$CONFIG_DOCUMENTROOT.PATH_SEPARATOR.$CONFIG_DOCUMENTROOT.'/inc'); + +require_once('lib_base.php'); + +?> |