From: Valerie Pond Date: Tue, 17 Jan 2023 17:48:14 +0000 (+0000) Subject: Add SQL config items to config sample X-Git-Tag: 0.9~421 X-Git-Url: https://jfr.im/git/irc/unrealircd/unrealircd-webpanel.git/commitdiff_plain/5d8e394e33f7e22138c96262ac6e51a3e41e97f6 Add SQL config items to config sample --- diff --git a/config.php.sample b/config.php.sample index 7d8c8f1..94a47e9 100644 --- a/config.php.sample +++ b/config.php.sample @@ -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: */