mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-05-08 13:46:10 +02:00
socketio: increase socketio limit to 1MiB
This commit is contained in:
parent
fcd9adf20d
commit
55c96e5577
@ -56,7 +56,7 @@ exports.expressCreateServer = (hookName, args, cb) => {
|
||||
* https://github.com/socketio/socket.io/issues/2276#issuecomment-147184662 (not totally true, actually, see above)
|
||||
*/
|
||||
cookie: false,
|
||||
maxHttpBufferSize: 10E3,
|
||||
maxHttpBufferSize: 1 << 20, // 1MiB
|
||||
});
|
||||
|
||||
io.use((socket, next) => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user