From 798152a4ea6c972d9448ad75ac1c9d1fe99d987f Mon Sep 17 00:00:00 2001 From: Lukas Rieger Date: Wed, 26 Aug 2020 01:55:59 +0200 Subject: [PATCH] Updated Configuration (markdown) --- Configuration.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Configuration.md b/Configuration.md index 1ef8d60..371292f 100644 --- a/Configuration.md +++ b/Configuration.md @@ -87,6 +87,14 @@ However, this also has a few drawbacks: ## Webserver configuration: `webserver.conf` The integrated web-server is the easiest way to host your map to the web, so you can view it in your browser. If enabled, it will host *(using `http`)* all files in the folder defined by the field `webroot` in this config on the defined `ip` and `port`. +```yaml +enabled: true +webroot: "bluemap/web" +ip: "123.45.6.78" +port: 8100 +maxConnectionCount: 100 +``` + - With the `enabled` field you can enable (`true`) and disable (`false`) the integrated web-server. - The `webroot` field in the `webserver.conf` defines the folder that the webserver will host to the web. This normally should be set to the same value as the `webroot` field in the `render.conf`. - The field `ip` defines the IP-address the web-server will bind to. If you omit this field, bluemap binds to all network-interfaces (`0.0.0.0`). If you only want to access your app on the machine that is hosting the map, use `localhost`.