]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - config/config.defaults.php
Newconf for DNSBL
[irc/unrealircd/unrealircd-webpanel.git] / config / config.defaults.php
1 <?php
2
3 /**
4 * The configuration file for your admin panel.
5 *
6 */
7
8 if (!defined('UPATH'))
9 die("Access denied");
10
11 /**
12 * The base URL, how this panel can be accessed.
13 * This would be '/' if you installed in the web root,
14 * or something like '/webpanel/' if you go to http://x.y.z/webpanel
15 * IMPORTANT: needs a trailing slash!
16 */
17 $config["base_url"] = '/unrealircd-webpanel/';
18
19 /**
20 * The RPC User name as defined in your unrealircd.conf
21 * https://www.unrealircd.org/docs/UnrealIRCd_webpanel#Configuring_UnrealIRCd
22 */
23 $config["unrealircd"]["rpc_user"] = 'adminpanel';
24
25 /**
26 * The RPC User password as defined in your unrealircd.conf
27 */
28 $config["unrealircd"]["rpc_password"] = 'securepassword';
29
30 /**
31 * The host IP or name of your RPC server
32 */
33 $config["unrealircd"]["host"] = '127.0.0.1';
34
35 /**
36 * The port of your RPC server as defined in your unrealircd.conf
37 */
38 $config["unrealircd"]["port"] = '8600';
39
40 /**
41 * You should set this to true, if your RPC server is not on your local host
42 */
43 $config["unrealircd"]["tls_verify_cert"] = false;
44
45 /**
46 * You should only need this, if you're developing something.
47 */
48 $config["debug"] = false;
49
50 /* No plugins loaded by default */
51
52 /* No SQL config by default, except for default table prefix: */
53 $config["mysql"]["table_prefix"] = "unreal_";
54
55 // TODO: mailer defaults ?