diff options
author | stale <redkugelblitzin@gmail.com> | 2022-07-01 20:53:11 -0300 |
---|---|---|
committer | stale <redkugelblitzin@gmail.com> | 2022-07-01 20:53:11 -0300 |
commit | fe851ee7ea31caa48a6d9a8ce1ddbb30854f2321 (patch) | |
tree | 27a5f19799d7c3ba654ea09ac3eb41ef7d9dfde0 /conf.json.sample | |
parent | c68dc16bef476203a4424c4b857f16eeb8f0e119 (diff) |
more config options and a good refactoring
Diffstat (limited to 'conf.json.sample')
-rw-r--r-- | conf.json.sample | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/conf.json.sample b/conf.json.sample index 7ca5bec..10ec4f5 100644 --- a/conf.json.sample +++ b/conf.json.sample @@ -1,4 +1,19 @@ { - "area_limit": 22500, - "room_limit": 16 + "paths": { + "cert": "cert.pem", + "pkey": "cert.rsa", + "assets": "assets/", + "index_page": "assets/index.html", + "room_page": "assets/room.html" + }, + + "server": { + "listen_on": "0.0.0.0:31235" + }, + + "limits": { + "board_area": 22500, + "room_slots": 16, + "form_size": 4096 + } } |