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