DayZ-Stat-Server/config.inc.php

35 lines
742 B
PHP
Raw Normal View History

2021-02-02 15:14:05 +01:00
<?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 = [
[
2021-02-02 23:34:59 +01:00
'id' => 'server1',
2021-02-02 15:14:05 +01:00
'type' => 'dayz',
2021-02-02 23:34:59 +01:00
'host' => '82.64.214.194:3201',
2021-02-02 15:14:05 +01:00
'options' => [
2021-02-02 23:34:59 +01:00
'query_port' => 27022
2021-02-02 15:14:05 +01:00
]
]
2021-02-02 23:34:59 +01:00
// ,[
2021-02-02 15:14:05 +01:00
// 'id' => 'DayZ Test',
// 'type' => 'dayz',
// 'host' => '51.91.61.15:7217',
// 'options' => [
// 'query_port' => 7217
// ]
// ]
];
//TODO: currently offline, looking into alternatives
//change this to toggle querying geographic information based on the IP address
define("GEOIP", "false");
/* phparma2serverstatus version (you don't need to change this) */
define("VERSION", "0.32");
?>