fix: increase terminal wait time to 30s to avoid image timeout

This is enough for most use cases. (VPS)
Increase on low powered devices like Raspberry Pi.
This commit is contained in:
Benjamin Nussbaum 2025-05-13 19:36:52 +02:00
parent d75d099490
commit d572c738cc

View file

@ -40,7 +40,7 @@ return [
'proxy_refresh_minutes' => env('TRMNL_PROXY_REFRESH_MINUTES', 15), 'proxy_refresh_minutes' => env('TRMNL_PROXY_REFRESH_MINUTES', 15),
'proxy_refresh_cron' => env('TRMNL_PROXY_REFRESH_CRON'), 'proxy_refresh_cron' => env('TRMNL_PROXY_REFRESH_CRON'),
'override_orig_icon' => env('TRMNL_OVERRIDE_ORIG_ICON', false), 'override_orig_icon' => env('TRMNL_OVERRIDE_ORIG_ICON', false),
'image_url_timeout' => env('TRMNL_IMAGE_URL_TIMEOUT', null), 'image_url_timeout' => env('TRMNL_IMAGE_URL_TIMEOUT', 30), //30 seconds; increase on low-powered devices
], ],
]; ];