]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - config.php.sample
Add SQL config items to config sample
[irc/unrealircd/unrealircd-webpanel.git] / config.php.sample
index 0095a3866192fcf68e2461e0ab9bffce37aecd09..94a47e9e4704c1b946f62ffdfe5ce45937412197 100644 (file)
@@ -14,7 +14,7 @@
  * or something like '/webpanel/' if you go to http://x.y.z/webpanel
  * IMPORTANT: needs a trailing slash!
 */
-define( 'BASE_URL', '/' );
+define( 'BASE_URL', '/unrealircd-webpanel/' );
 
 /**
  *  The RPC User name as defined in your unrealircd.conf
@@ -48,6 +48,38 @@ define( 'UNREALIRCD_SSL_VERIFY', false );
 define( 'UNREALIRCD_DEBUG', false );
 
 
+/**
+ * If you wish to use the default SQL user authentication system,
+ * you'll need to specify your SQL information below.
+ */
+
+ /**
+  * SQL IP address or hostname
+  */
+define('SQL_IP', "127.0.0.1");
+
+/**
+ * SQL Dabase name
+ */
+define('SQL_DATABASE', "unrealircd");
+/**
+ * SQL Username
+ */
+define('SQL_USERNAME', "unrealircd");
+
+/**
+ * SQL Password
+ */
+define('SQL_PASSWORD', "replace_this_with_your_sql_password");
+
+/**
+ * SQL Table prefix
+ * You should only need to change this if you have already have one
+ * or more instances of webpanel on the same database
+ */
+define('SQL_PREFIX', "unreal_");
+
+
 /**
  * Your list of plugins:
  */