filebrowser: disable pcre jit to avoid crash

This commit is contained in:
Alexandre
2025-08-10 20:48:33 +02:00
parent 6f1fb8eec3
commit 86413ca11f
4 changed files with 8 additions and 3 deletions

View File

@@ -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

View File

@@ -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"
}

View File

@@ -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;

View File

@@ -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",