forked from jasonof9/minecraftsyscontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
servers_template.py
36 lines (36 loc) · 1.21 KB
/
servers_template.py
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
SERVERS = {
'town' : {
'name' : 'Town',
'bgimage' : 'https://static.nine-walkers.com/town-dueast-combined-dark.png',
'news' : 'news.html',
'aws_instance_id' : 'the one with the minecraft server',
'server_address' : 'server_address',
'logpath' : 'logs/town',
'maps' : {
'Overworld' : 'http://mcoverview.nine-walkers.com',
'Overwold (Test)' : 'http://mcoverview-test.nine-walkers.com'
}
},
'village' : {
'name' : 'Village',
'bgimage' : 'http://server/bg.png',
'news' : 'news.html',
'aws_instance_id' : 'the one with the minecraft server',
'server_address' : 'server_address',
'logpath' : 'logs/village',
'maps' : {
'Literally nowhere' : 'http://example.com'
}
},
'superduperfunland' : {
'name' : 'Super Duper Fun Land',
'bgimage' : 'superduperfunbg.png',
'news' : 'news.html',
'aws_instance_id' : 'super duper fun AWS instance',
'server_address' : 'example.com/superduperfunexample',
'logpath' : 'logs/town',
'maps' : {
'Super Duper Fun World' : 'http://example.com'
}
}
}