X-Git-Url: https://jfr.im/git/irc/unrealircd/unrealircd-webpanel.git/blobdiff_plain/99250784cf22e61cc2aca3a502c5ccd54f3e6989..408491c6430721b73c29af47c9eb044be254342b:/config.php.sample diff --git a/config.php.sample b/config.php.sample index 96a5314..a019293 100644 --- a/config.php.sample +++ b/config.php.sample @@ -5,10 +5,16 @@ * */ - if (!defined('UPATH')) die("Access denied"); +/** + * The base URL, how this panel can be accessed. + * This would be '/' if you installed in the web root, + * or something like '/webpanel/' if you go to http://x.y.z/webpanel + * IMPORTANT: needs a trailing slash! +*/ +define( 'BASE_URL', '/unrealircd-webpanel/' ); /** * The RPC User name as defined in your unrealircd.conf @@ -42,6 +48,48 @@ 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_"); + + +/** + * The default user for the plugin "SQL_Auth". As soon as you load + * the plugin, the user defined below will be created. It suggested + * that you remove it after you've logged in successfully. + */ +define('SQL_DEFAULT_USER', [ + "username" => "default", + "password" => "testing" +]); + /** * Your list of plugins: */