neon_arch
commited on
Commit
·
af145e9
1
Parent(s):
c7aefca
docs: update docs to explain about the new option debug
Browse files- docs/configuration.md +1 -0
- docs/installation.md +1 -0
docs/configuration.md
CHANGED
|
@@ -21,6 +21,7 @@ Some of the configuration options provided in the file are stated below. These a
|
|
| 21 |
# General
|
| 22 |
|
| 23 |
- **logging:** An option to enable or disable logs.
|
|
|
|
| 24 |
|
| 25 |
## Server
|
| 26 |
|
|
|
|
| 21 |
# General
|
| 22 |
|
| 23 |
- **logging:** An option to enable or disable logs.
|
| 24 |
+
- **debug:** An option to enable or disable debug mode.
|
| 25 |
|
| 26 |
## Server
|
| 27 |
|
docs/installation.md
CHANGED
|
@@ -78,6 +78,7 @@ After that edit the config.lua file located under `websurfx` directory. In the c
|
|
| 78 |
```lua
|
| 79 |
-- ### General ###
|
| 80 |
logging = true -- an option to enable or disable logs.
|
|
|
|
| 81 |
|
| 82 |
-- ### Server ###
|
| 83 |
port = "8080" -- port on which server should be launched
|
|
|
|
| 78 |
```lua
|
| 79 |
-- ### General ###
|
| 80 |
logging = true -- an option to enable or disable logs.
|
| 81 |
+
debug = false -- an option to enable or disable debug mode.
|
| 82 |
|
| 83 |
-- ### Server ###
|
| 84 |
port = "8080" -- port on which server should be launched
|