svelte-adapter-uws 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2226,10 +2226,14 @@ fs.file-max = 1024000 # system-wide file descriptor limit
|
|
|
2226
2226
|
Add to `/etc/security/limits.conf` (takes effect on next login):
|
|
2227
2227
|
|
|
2228
2228
|
```
|
|
2229
|
-
*
|
|
2230
|
-
*
|
|
2229
|
+
* soft nofile 1024000
|
|
2230
|
+
* hard nofile 1024000
|
|
2231
|
+
root soft nofile 1024000
|
|
2232
|
+
root hard nofile 1024000
|
|
2231
2233
|
```
|
|
2232
2234
|
|
|
2235
|
+
The wildcard `*` does not apply to the root user on most Linux distributions. If the app runs as root (common in Docker), the explicit `root` lines are required.
|
|
2236
|
+
|
|
2233
2237
|
### Docker
|
|
2234
2238
|
|
|
2235
2239
|
If running in Docker, the container also needs raised limits. Add to your `docker-compose.yml`:
|
package/package.json
CHANGED