forked from geteso/esoBB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
34 lines (31 loc) · 1.2 KB
/
config.php
File metadata and controls
34 lines (31 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
// GLOBAL CONSTANTS FOR INSTALLER
if (!defined("IN_ESO")) exit;
define("MYESOBB_VERSION", "1.0.0-pre1");
$config = array(
// This following block is filled out by the installer in config/config.php.
"domain" => "myeso.org",
"webroot" => "/var/www/",
"baseURL" => "https://myeso.org/",
"cookieName" => "myeso",
"templateFolder" => "myeso_template",
"forumFolderPrefix" => "myeso_forum_", // The prefix applied before the folders in which individual forums are hosted.
"forumUserPrefix" => "myeso_user_", // The prefix applied before the MySQL user assigned to the database of each forum.
"forumDbPrefix" => "myeso_db_", // The prefix applied before the database name of each forum.
// MySQL credentials.
"mysqlHost" => "localhost",
"mysqlUser" => "myeso_createdb",
"mysqlPass" => "",
"mysqlDb" => "myeso_forums", // This is the database used to keep track of installed forums.
// Default settings.
"mysqlPrefix" => "et_",
"mysqlEncoding" => "utf8mb4",
"mysqlEngine" => "InnoDB",
"hashingMethod" => "bcrypt",
// Cloudflare Turnstile captcha key/secret.
"captchaKey" => "0x4AAAAAAAU4XRfztUUFOaxR",
"captchaSecret" => "0x4AAAAAAAU4XTEL78bI_ZSWQBaLV94sJBY",
// For troubleshooting.
"verboseFatalErrors" => "true",
);
?>