forked from ARISGames/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.class.php.template
33 lines (25 loc) · 984 Bytes
/
config.class.php.template
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
<?php
class Config
{
const errorLog = '/path/to/server/gamedata/aris_error_log.txt'; //Make sure this file is writable
const mysqlBinPath = '/usr/bin';
//pusher.com service
const pusher_key = '####################';
const pusher_secret = '####################';
const pusher_app_id = '#####';
//mailgun service
const mailgun_key = 'key-################################';
//PHP accelerator and cache
const isAPCLoaded = FALSE; //Change to TRUE if the APC server extension has been configured
//v2 conf
const v2_host = 'host';
const v2_db_user = 'user';
const v2_db_pass = 'pass';
const v2_db = 'dbname';
const v2_gamedata_folder = '/path/to/server/gamedata/v2';
const v2_gamedata_www_path = 'http://aris/server/gamedata/v2';
const v2_error_log = '/path/to/server/gamedata/v2/aris_error_log.txt';
const bridge_api_path = "localhost/server";
const raw_uploads_folder = '/var/www/server/gamedata/rawuploads';
}
?>