]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - config.php.sample
Adjust overview top margin
[irc/unrealircd/unrealircd-webpanel.git] / config.php.sample
index 54432b1402b465961aa739ad152e3ef462f7118c..7d8c8f1c966d680eeb5d194b9e1a9e1bbe5abd02 100644 (file)
@@ -5,13 +5,20 @@
  * 
  */
 
-
  if (!defined('UPATH'))
     die("Access denied");
 
+/**
+ * The base URL, how this panel can be accessed.
+ * This would be '/' if you installed in the web root,
+ * or something like '/webpanel/' if you go to http://x.y.z/webpanel
+ * IMPORTANT: needs a trailing slash!
+*/
+define( 'BASE_URL', '/unrealircd-webpanel/' );
 
 /**
  *  The RPC User name as defined in your unrealircd.conf
+ *  Guide / Documentation: https://www.unrealircd.org/docs/JSON-RPC
 */
 define( 'UNREALIRCD_RPC_USER', 'apiuser' );
 
@@ -31,12 +38,12 @@ define( 'UNREALIRCD_HOST', '127.0.0.1' );
 define( 'UNREALIRCD_PORT', '8000' );
 
 /** 
- * You should set this to true if your RPC server is not on our local host
+ * You should set this to true, if your RPC server is not on your local host
 */
 define( 'UNREALIRCD_SSL_VERIFY', false );
 
 /**
- * You should only need this if you're developing something.
+ * You should only need this, if you're developing something.
 */
 define( 'UNREALIRCD_DEBUG', false );
 
@@ -52,4 +59,4 @@ define(
         */
         //"example_plugin",
     ]
-);
\ No newline at end of file
+);