neon_arch commited on
Commit
3d94552
β€’
1 Parent(s): a5b7d08

πŸ“œ docs: add documentation for the new config option (#175)

Browse files
Files changed (2) hide show
  1. docs/configuration.md +1 -0
  2. docs/installation.md +1 -0
docs/configuration.md CHANGED
@@ -23,6 +23,7 @@ Some of the configuration options provided in the file are stated below. These a
23
 
24
  - **logging:** An option to enable or disable logs.
25
  - **debug:** An option to enable or disable debug mode.
 
26
 
27
  ## Server
28
 
 
23
 
24
  - **logging:** An option to enable or disable logs.
25
  - **debug:** An option to enable or disable debug mode.
26
+ - **threads:** The amount of threads that the app will use to run (the value should be greater than 0).
27
 
28
  ## Server
29
 
docs/installation.md CHANGED
@@ -79,6 +79,7 @@ After that edit the config.lua file located under `websurfx` directory. In the c
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
 
79
  -- ### General ###
80
  logging = true -- an option to enable or disable logs.
81
  debug = false -- an option to enable or disable debug mode.
82
+ threads = 10 -- the amount of threads that the app will use to run (the value should be greater than 0).
83
 
84
  -- ### Server ###
85
  port = "8080" -- port on which server should be launched