Adding db connection stuff
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 9 Jan 2006 02:25:15 +0000 (02:25 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 9 Jan 2006 02:25:15 +0000 (02:25 +0000)
includes/config.php.new

index 1106f066ee5cd0d7abe839f43ced37c484beedac..1acd27719f872b94acd09e9c283d69131f0e928b 100644 (file)
@@ -68,6 +68,30 @@ $conf['paths']['templateset'] = 'default';
 // advanced (and default) type 2 uses blame.php/repos/somedir/.
 $conf['other']['pathtype'] = 2;
 
+// ###################################################################
+// ///////////////////////// DATABASE SERVER
+// -------------------------------------------------------------------
+// The name of the server on which the cache database is located.
+$conf['db']['server'] = 'localhost';
+
+// ###################################################################
+// ///////////////////////// DATABASE USER
+// -------------------------------------------------------------------
+// The user who accesses your database.
+$conf['db']['user'] = 'mysql';
+
+// ###################################################################
+// ///////////////////////// DATABASE PASSWORD
+// -------------------------------------------------------------------
+// The password for the user who accesses the database.
+$conf['db']['pass'] = 'pass';
+
+// ###################################################################
+// ///////////////////////// DATABASE NAME
+// -------------------------------------------------------------------
+// Database name that ViewSVN will access.
+$conf['db']['name'] = 'viewsvn';
+
 /*=====================================================================*\
 || ###################################################################
 || # $HeadURL$