]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - config.php.sample
Change some more labels
[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
0b163f47 15 * Guide / Documentation: https://www.unrealircd.org/docs/JSON-RPC
26971737
VP
16*/
17define( 'UNREALIRCD_RPC_USER', 'apiuser' );
18
19/**
20 * The RPC User password as defined in your unrealircd.conf
21*/
22define( 'UNREALIRCD_RPC_PASSWORD', 'securepassword' );
23
24/**
25 * The host IP or name of your RPC server
26*/
27define( 'UNREALIRCD_HOST', '127.0.0.1' );
28
29/**
30 * The port of your RPC server as defined in your unrealircd.conf
31*/
32define( 'UNREALIRCD_PORT', '8000' );
33
34/**
0b163f47 35 * You should set this to true, if your RPC server is not on your local host
26971737
VP
36*/
37define( 'UNREALIRCD_SSL_VERIFY', false );
38
39/**
0b163f47 40 * You should only need this, if you're developing something.
26971737 41*/
90dc8f2b
VP
42define( 'UNREALIRCD_DEBUG', false );
43
44
45/**
46 * Your list of plugins:
47 */
48define(
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 ]
0b163f47 56);