-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.inc.php
More file actions
35 lines (29 loc) · 771 Bytes
/
config.inc.php
File metadata and controls
35 lines (29 loc) · 771 Bytes
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
<?php
// change this to reflect the servers that you want to query
// https://github.com/Austinb/GameQ/wiki/Examples-v3#different-client-and-query-ports
$servers = [
[
'id' => 'AlphaSquad Arma 3',
'type' => 'arma3',
'host' => '207.182.138.242:2302',
'options' => [
'query_port' => 2303
]
],
//[
//'id' => 'Arma 2 OA Test',
//'type' => 'armedassault2oa',
//'host' => '107.191.44.98:2302'
//],
//[
//'id' => 'DayZ Test',
//'type' => 'dayz',
//'host' => '198.12.65.82:2302'
//]
];
//TODO: currently offline, looking into alternatives
//change this to toggle querying geographic information based on the IP address
//define("GEOIP", "true");
/* phparma2serverstatus version (you don't need to change this) */
define("VERSION", "0.2");
?>