mirror of
https://github.com/Sithranduil/srcds_exporter.git
synced 2025-07-22 14:28:27 +02:00
56 lines
822 B
JavaScript
56 lines
822 B
JavaScript
export default {
|
|
gametrackerShedule: 3600, // Request gametracker every hours
|
|
servers: [
|
|
// cstrike:only_de_dust2
|
|
{
|
|
ip: '87.98.155.38',
|
|
port: 27016,
|
|
},
|
|
// cstrike:zm_full_ammo
|
|
{
|
|
ip: '87.98.152.38',
|
|
port: 27015,
|
|
},
|
|
// cstrike:free_for_all
|
|
{
|
|
ip: '87.98.181.40',
|
|
port: 27015,
|
|
},
|
|
// cstrike:gungame
|
|
{
|
|
ip: '87.98.155.38',
|
|
port: 27017,
|
|
},
|
|
// cstrike:surf
|
|
{
|
|
ip: '188.165.178.187',
|
|
port: 27015,
|
|
},
|
|
// cstrike:ze
|
|
{
|
|
ip: '188.165.178.180',
|
|
port: 27016,
|
|
},
|
|
// csgo:bhop_t1_to_t2
|
|
{
|
|
ip: '188.165.178.160',
|
|
port: 27015,
|
|
},
|
|
// csgo:bhop_t3_to_t5
|
|
{
|
|
ip: '188.165.178.162',
|
|
port: 27015,
|
|
},
|
|
// csgo:only_de_dust2
|
|
{
|
|
ip: '188.165.178.187',
|
|
port: 27035,
|
|
},
|
|
// csgo:zm_source
|
|
{
|
|
ip: '188.165.178.187',
|
|
port: 27030,
|
|
},
|
|
],
|
|
};
|