]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - config.php
Works on some more
[irc/unrealircd/unrealircd-webpanel.git] / config.php
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 */
16 define( 'UNREALIRCD_RPC_USER', 'apiuser' );
17
18 /**
19 * The RPC User password as defined in your unrealircd.conf
20 */
21 define( 'UNREALIRCD_RPC_PASSWORD', 'securepassword' );
22
23 /**
24 * The host IP or name of your RPC server
25 */
26 define( 'UNREALIRCD_HOST', '127.0.0.1' );
27
28 /**
29 * The port of your RPC server as defined in your unrealircd.conf
30 */
31 define( 'UNREALIRCD_PORT', '8000' );
32
33 /**
34 * You should set this to true if your RPC server is not on our local host
35 */
36 define( 'UNREALIRCD_SSL_VERIFY', false );
37
38 /**
39 * You should only need this if you're developing something.
40 */
41 define( 'UNREALIRCD_DEBUG', false );