]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - config.php.sample
link to docu and rest..
[irc/unrealircd/unrealircd-webpanel.git] / config.php.sample
1 <?php
2
3 /**
4 * The configuration file for your admin panel.
5 *
6 */
7
8
9 if (!defined('UPATH'))
10 die("Access denied");
11
12
13 /**
14 * The RPC User name as defined in your unrealircd.conf
15 * Guide / Documentation: https://www.unrealircd.org/docs/JSON-RPC
16 */
17 define( 'UNREALIRCD_RPC_USER', 'apiuser' );
18
19 /**
20 * The RPC User password as defined in your unrealircd.conf
21 */
22 define( 'UNREALIRCD_RPC_PASSWORD', 'securepassword' );
23
24 /**
25 * The host IP or name of your RPC server
26 */
27 define( 'UNREALIRCD_HOST', '127.0.0.1' );
28
29 /**
30 * The port of your RPC server as defined in your unrealircd.conf
31 */
32 define( 'UNREALIRCD_PORT', '8000' );
33
34 /**
35 * You should set this to true, if your RPC server is not on your local host
36 */
37 define( 'UNREALIRCD_SSL_VERIFY', false );
38
39 /**
40 * You should only need this, if you're developing something.
41 */
42 define( 'UNREALIRCD_DEBUG', false );
43
44
45 /**
46 * Your list of plugins:
47 */
48 define(
49 'PLUGINS', [
50
51 /* This is where you should type the name(s) of your plugins.
52 * Uncomment the following line to view the live example
53 */
54 //"example_plugin",
55 ]
56 );