File tree 1 file changed +24
-4
lines changed
1 file changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,11 @@ released apart from the actual server.
13
13
## Features
14
14
15
15
* `` stop `` -Command to stop the server (Permission: `` command.stop `` )
16
- * Asynchronous writing of Log files
17
- * ColorCode support in the Console
18
- * Proxy support with Configuration (BungeeCord, Waterfall, Velocity)
19
- * Project structure to support API building
16
+ * Asynchronous writing of log-files
17
+ * [ ColorCode] ( https://minecraft.fandom.com/wiki/Formatting_codes ) support in the Console
18
+ * Proxy support (BungeeCord, Waterfall, Velocity)
19
+ * Structure to publish separate API
20
+ * YAML configuration file (`` server_config.yml `` )
20
21
21
22
## Publishing
22
23
@@ -39,3 +40,22 @@ open-sourcing [Sabre](https://github.com/Project-Cepi/Sabre)!
39
40
## Contributions
40
41
41
42
If you want to contribute, pull requests are always welcome!
43
+
44
+ ## Server Configuration
45
+
46
+ This is the default configuration when the server gets started for the first time:
47
+
48
+ ```` yaml
49
+ server :
50
+ # The host address of the server
51
+ host : 0.0.0.0
52
+ # The listening port of the server
53
+ port : 25565
54
+ # Toggle online-mode (mojang authentication) of the server
55
+ online-mode : true
56
+ proxy :
57
+ # Toggle proxy-mode of the server (options: NONE, BUNGEECORD, VELOCITY)
58
+ proxy-mode : NONE
59
+ # Set your velocity-secret
60
+ velocity-secret : ' '
61
+ ` ` ` `
You can’t perform that action at this time.
0 commit comments