Commit e5497a

2026-01-12 22:39:13 Ralph Thesen: Added FAQ item on net.core.somaxconn
faq.md ..
@@ 41,3 41,20 @@
### 413 RequestEntityTooLarge
When An Otter Wiki raises the error 413 RequestEntityTooLarge please configure the variable `MAX_FORM_MEMORY_SIZE` which is in bytes and by default `500000`, see [Configuration](/Configuration#content-and-editing-preferences).
+
+ ### Listen queue size is greater than the system max net.core.somaxconn
+
+ This was reported to happen when using the `-slim` image on a Synology NAS, see [#342](https://github.com/redimp/otterwiki/issues/342). This can be fixed with increasing the value via sysctl or when using a `docker-compose.yaml` with
+
+ ```yaml
+ services:
+ otterwiki:
+ image: redimp/otterwiki:2-slim
+ restart: unless-stopped
+ ports:
+ - 8080:80
+ volumes:
+ - ./app-data:/app-data
+ sysctls:
+ - net.core.somaxconn=1024
+ ```
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9