]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - config.php.sample
Add helpful error message if admin forgot to run 'composer install'
[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*/
90dc8f2b
VP
41define( 'UNREALIRCD_DEBUG', false );
42
43
44/**
45 * Your list of plugins:
46 */
47define(
48 'PLUGINS', [
49
50 /* This is where you should type the name(s) of your plugins.
51 * Uncomment the following line to view the live example
52 */
53 //"example_plugin",
54 ]
55);