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