Add support for enforcing banned-ips.txt on internal web server

This commit is contained in:
Mike Primm 2011-07-22 16:56:08 -05:00
parent 0e6dfc1adf
commit e613fb14d7
4 changed files with 84 additions and 4 deletions

View file

@ -274,11 +274,12 @@ public class DynmapPlugin extends JavaPlugin {
}
int port = configuration.getInteger("webserver-port", 8123);
boolean allow_symlinks = configuration.getBoolean("allow-symlinks", false);
boolean checkbannedips = configuration.getBoolean("check-banned-ips", true);
if(allow_symlinks)
Log.verboseinfo("Web server is permitting symbolic links");
else
Log.verboseinfo("Web server is not permitting symbolic links");
webServer = new HttpServer(bindAddress, port);
webServer = new HttpServer(bindAddress, port, checkbannedips);
webServer.handlers.put("/", new FilesystemHandler(getFile(configuration.getString("webpath", "web")), allow_symlinks));
webServer.handlers.put("/tiles/", new FilesystemHandler(tilesDirectory, allow_symlinks));
webServer.handlers.put("/up/configuration", new ClientConfigurationHandler(this));