forked from ARISGames/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.class.php.template
executable file
·29 lines (23 loc) · 1.01 KB
/
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
<?php
class Config
{
const dbUser = 'aris_db_username';
const dbPass = 'aris_db_password';
const dbSchema = 'aris_schema';
const dbHost = 'localhost';
const adminEmail = ''; //This email address, if specified, will be notified of server errors
const WWWPath = 'http://www.yourdomain.com';
const serverWWWPath = 'http://www.yourdomain.com/path/to/aris/server';
const gamedataWWWPath = 'http://www.yourdomain.com/path/to/gamedata';
const gamedataFSPath = '/path/to/gamedata'; //Make Sure this directory is writable
const serverErrorLog = '/path/to/aris_error_log.txt'; //Make sure this file is writable
const gameMediaSubdir = ''; //if this is used, you must include the trailing slash
const mysqlBinPath = '/Applications/MAMP/Library/bin';
//pusher.com service
const pusher_key = 'key';
const pusher_secret = 'secret';
const pusher_app_id = 'app';
//PHP accelerator and cache
const isAPCLoaded = FALSE; //Change to TRUE if the APC server extension has been configured
}
?>