added configvariable bindaddress (thanks FrozenCow)
This commit is contained in:
parent
8162817041
commit
b4fca31cd5
2 changed files with 5 additions and 1 deletions
|
|
@ -90,6 +90,9 @@ public class MapManager extends Thread {
|
|||
/* port to run web server on */
|
||||
public int serverport = 8123;
|
||||
|
||||
/* bind web server to ip-address */
|
||||
public String bindaddress = "0.0.0.0";
|
||||
|
||||
/* time to pause between rendering tiles (ms) */
|
||||
public int renderWait = 500;
|
||||
|
||||
|
|
@ -125,6 +128,7 @@ public class MapManager extends Thread {
|
|||
colorsetpath = "colors.txt";
|
||||
signspath = "signs.txt";
|
||||
serverport = 8123;
|
||||
bindaddress = "0.0.0.0";
|
||||
|
||||
tileStore = new HashMap<Long, MapTile>();
|
||||
staleTiles = new LinkedList<MapTile>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue