mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-04-13 09:54:23 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9dcf622e9f |
@@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- **n8n** - Make `N8N_PAYLOAD_SIZE_MAX` configurable via `.env` (was hardcoded to 256, ignoring user overrides)
|
- **n8n** - Make `N8N_PAYLOAD_SIZE_MAX` configurable via `.env` (was hardcoded to 256, ignoring user overrides)
|
||||||
|
- **Uptime Kuma** - Fix healthcheck failure (`wget: not found`) by switching to Node.js-based check
|
||||||
|
|
||||||
## [1.4.1] - 2026-03-23
|
## [1.4.1] - 2026-03-23
|
||||||
|
|
||||||
|
|||||||
@@ -1291,7 +1291,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- uptime_kuma_data:/app/data
|
- uptime_kuma_data:/app/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "http_proxy= https_proxy= HTTP_PROXY= HTTPS_PROXY= wget -qO- http://localhost:3001/ || exit 1"]
|
test: ["CMD-SHELL", "node -e \"const http=require('http');const r=http.get('http://localhost:3001',res=>{process.exit(res.statusCode<400?0:1)});r.on('error',()=>process.exit(1));r.setTimeout(5000,()=>{r.destroy();process.exit(1)})\""]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
|||||||
Reference in New Issue
Block a user