mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
filebrowser: disable pcre jit to avoid crash
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
## 2.42.2-3 (10-08-2025)
|
||||
- Fix: disable PCRE JIT in Nginx to prevent crashes on some x86 systems
|
||||
|
||||
## 2.42.2-2 (09-08-2025)
|
||||
- Minor bugs fixed
|
||||
|
||||
|
||||
@@ -129,5 +129,5 @@
|
||||
"slug": "filebrowser",
|
||||
"udev": true,
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "2.42.2-2"
|
||||
"version": "2.42.2-3"
|
||||
}
|
||||
|
||||
@@ -12,7 +12,9 @@ pid /var/run/nginx.pid;
|
||||
worker_processes 1;
|
||||
|
||||
# Enables the use of JIT for regular expressions to speed-up their processing.
|
||||
pcre_jit on;
|
||||
# Disabled for compatibility with CPUs that do not support PCRE JIT, which caused
|
||||
# crashes on some systems (see issue #1993).
|
||||
pcre_jit off;
|
||||
|
||||
# Write error log to Hass.io add-on log.
|
||||
error_log /proc/1/fd/1 error;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"github_beta": "true",
|
||||
"last_update": "09-08-2025",
|
||||
"last_update": "10-08-2025",
|
||||
"paused": false,
|
||||
"repository": "alexbelgium/hassio-addons",
|
||||
"slug": "filebrowser",
|
||||
|
||||
Reference in New Issue
Block a user