]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - config.php.sample
Make a start on filtering for later
[irc/unrealircd/unrealircd-webpanel.git] / config.php.sample
index 828946ea29565b36f48980a95e2ef462f67b9382..6726eb846ed634231fd05ca03336ca027851f8e9 100644 (file)
@@ -6,7 +6,7 @@
  */
 
  if (!defined('UPATH'))
-    die("Access denied");
+       die("Access denied");
 
 /**
  * The base URL, how this panel can be accessed.
@@ -51,14 +51,14 @@ define( 'UNREALIRCD_DEBUG', false );
  * Your list of plugins:
  */
 define(
-    'PLUGINS', [
-
-        /*  This is where you should type the name(s) of your plugins. 
-         *  Uncomment the following line to view the live example
-        */
-        //"example_plugin", /* An example plugin */
-        //"sql_auth", /* Provides a login page which uses SQL */
-    ]
+       'PLUGINS', [
+
+               /*  This is where you should type the name(s) of your plugins. 
+                *  Uncomment the following line to view the live example
+               */
+               //"example_plugin", /* An example plugin */
+               //"sql_auth", /* Provides a login page which uses SQL */
+       ]
 );
 
 
@@ -69,6 +69,11 @@ define(
 
  /**
   * SQL IP address or hostname
+  * You may specify a unix domain socket directory address
+  * E.g:
+  *     define('SQL_IP', "/path/to/unix/domain/socket");
+  *
+  * Path to unix socket MUST start with a slash "/"
   */
 define('SQL_IP', "127.0.0.1");
 
@@ -100,6 +105,16 @@ define('SQL_PREFIX', "unreal_");
  * that you remove it after you've logged in successfully.
  */
 define('SQL_DEFAULT_USER', [
-    "username" => "default",
-    "password" => "testing"
+       "username" => "default",
+       "password" => "testing"
+]);
+
+/**
+ * Also part of the SQL_Auth plugin. This protects your login page.
+ * This is a list of DNS Blacklists that get checked for non-logged-in
+ * users.
+*/
+define('DNSBL', [
+       "dnsbl.dronebl.org",
+       "rbl.efnetrbl.org"
 ]);