-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.php.sample
More file actions
37 lines (30 loc) · 1.09 KB
/
settings.php.sample
File metadata and controls
37 lines (30 loc) · 1.09 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
35
36
37
<?php
//Unit Details
$groupname = "";
$groupsite = "sitename.com"; //don't include http:// or www. This service is designed for subdomains so "http://missions.sitename.com"
$groupdiscord = "https://discord.gg/INVITECODE";
//MySQL Login credentials, use what you set in setup.sql
$servername = "127.0.0.1";
$username = "USERNAME";
$password = "PASSWORD";
$dbname = "DBNAME";
//Directories
$missionsdir = "C:/dir/to/Arma/MPMissions/";
$brokendir = "C:/dir/to/Broken/";
$deleteddir = "C:/dir/to/Delete/";
//Firedaemon Fusion settings
$fd_enabled = "False"; //Set to "False" if you do not use Firedaemon to manage your servers
$fd_URL = "http://URL:PORT"; //URL and port you use to login to FireDaemon fusion
$fd_user = "USERNAME"; // Username used to login to Firedaemon Fusion (I suggest creating a separate account for this)
$fd_pass = "PASSWORD"; //Password used to login to Firedaemon
//TinyMCE API key
$tinyMCEAPI = "?apikey=APIKEY";
//change this to reflect the servers that you want to query
$servers = array(
array(
'id' => 'SRV1',
'type' => 'armedassault3',
'host' => '0.0.0.0:2302',
)
);
?>