mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-30 04:09:13 -04:00
Docker: Expose socketIo.maxHttpBufferSize and dumpOnUncleanExit settings as environment variables
This commit is contained in:
parent
15f17b5237
commit
fe7d223b6e
2 changed files with 4 additions and 2 deletions
|
@ -482,7 +482,7 @@
|
|||
* value to work properly, but increasing the value increases susceptibility
|
||||
* to denial of service attacks (malicious clients can exhaust memory).
|
||||
*/
|
||||
"maxHttpBufferSize": 10000
|
||||
"maxHttpBufferSize": "${SOCKETIO_MAX_HTTP_BUFFER_SIZE:10000}"
|
||||
},
|
||||
|
||||
/*
|
||||
|
@ -495,7 +495,7 @@
|
|||
/**
|
||||
* Disable dump of objects preventing a clean exit
|
||||
*/
|
||||
"dumpOnUncleanExit": false,
|
||||
"dumpOnUncleanExit": "${DUMP_ON_UNCLEAN_EXIT:false}",
|
||||
|
||||
/*
|
||||
* Disable indentation on new line when previous line ends with some special
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue