You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Cloudflare Zlib fork no longer appears to be actively maintained and currently suffers from a security vulnerability. This change updates the Nginx build to use the latest version of Zlib, which includes the necessary security fixes. Additionally, it removes the dependency on the Cloudflare fork, simplifying our build process and ensuring we are using a well-maintained library.
https://www.sentinelone.com/vulnerability-database/cve-2023-6992/
Copy file name to clipboardExpand all lines: CHANGELOG.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,52 @@ All notable changes to EngineScript will be documented in this file.
4
4
5
5
Changes are organized by date, with the most recent changes listed first.
6
6
7
+
## 2026-02-18
8
+
9
+
### ⚡ NGINX JETPACK BOOST DELIVERY COMPATIBILITY
10
+
11
+
-**Jetpack Boost static delivery fallback fix**: Added a dedicated Nginx location for `/wp-content/boost-cache/static/*.css|*.js` that uses `try_files` with fallback to `/index.php?$args`.
12
+
- Existing concatenated files continue to be served directly by Nginx.
13
+
- Missing concatenated files now route through WordPress instead of returning an Nginx-native 404.
14
+
- Restores compatibility with Jetpack Boost enhanced delivery detection that relies on WordPress `is_404()` behavior in `wp-content` paths.
15
+
-**Generic CSS/JS location clarified**: Added inline guidance noting why `try_files` is intentionally not enabled in the general `\.(css|js)` location to preserve fast native 404 handling for non-Jetpack asset misses.
16
+
-**FastCGI/PHP timeout alignment**: Tuned request timeout chain to reduce premature 504 responses and unnecessary long-running worker overlap.
17
+
- Updated Nginx `fastcgi_read_timeout` from `120s` to `130s`.
18
+
- Updated PHP-FPM `request_terminate_timeout` from `300s` to `125s`.
19
+
- Kept PHP `max_execution_time` at `120` as the baseline script limit.
20
+
-**try_files simplification for endpoint-specific rules**: Removed unnecessary `$uri/` directory checks where URL patterns are file/endpoint specific.
21
+
- Updated Jetpack Boost static fallback in `static-files.conf` to `try_files $uri /index.php?$args;`.
22
+
- Updated `wp-json` fallback in `wp-secure.conf` to `try_files $uri /index.php?$args;`.
23
+
-**Nginx zlib source migration**: Switched active Nginx build path from Cloudflare zlib fork to official zlib source.
24
+
- Updated `nginx-compile.sh` to use `--with-zlib="/usr/src/zlib-${ZLIB_VER}"` for both HTTP/2 and HTTP/3 builds.
25
+
- Disabled Cloudflare zlib clone/configure flow in `zlib-install.sh` by commenting it out (kept for future re-enable).
26
+
- Updated Nginx install/upgrade script messaging from "Cloudflare Zlib" to "zlib".
27
+
28
+
## 2025-01-21
29
+
30
+
### ⚙️ PHP VERSION SELECTION
31
+
32
+
-**PHP 8.5 Default**: Default PHP version changed from 8.4 to 8.5
33
+
-**Version Override System**: New `PHP_VERSION_OVERRIDE` variable in install options allows selecting PHP 8.4 or 8.3
34
+
-**KEEP_OLD_PHP Removed**: Old PHP version is always removed during upgrades; use "Switch PHP Version" menu to change versions
35
+
-**Switch PHP Version Menu**: New interactive option in Update Software menu lets users switch between PHP 8.3, 8.4, and 8.5
36
+
-**resolve_php_version()**: New shared function validates version override and applies it at script startup
37
+
-**Dynamic Package Blocking**: `package-block.sh` now dynamically blocks all PHP versions except the selected one
38
+
-**Opcache Handling**: `php-install.sh` and `php-update.sh` conditionally skip `php-opcache` package for PHP 8.5+ (built-in)
39
+
-**php-update.sh Rewrite**: Complete rewrite — auto-detects currently installed PHP version, version-agnostic upgrade logic, no hardcoded versions
40
+
41
+
### 🐛 BUG FIXES
42
+
43
+
-**alias-debug.sh**: Fixed hardcoded `php8.3-fpm` service name; now uses `${PHP_VER}` dynamically
44
+
-**enginescript-common.sh**: Updated `restart_php_fpm()` version array to include PHP 8.5
45
+
46
+
### 🔒 SECURITY IMPROVEMENTS
47
+
48
+
-**HIGH_SECURITY_SSL TLS Enhancement**: When `HIGH_SECURITY_SSL=1` is configured, TLS 1.1 is now disabled in nginx
49
+
- SSL protocols reduced from `TLSv1.1 TLSv1.2 TLSv1.3` to `TLSv1.2 TLSv1.3`
50
+
- Applied during nginx installation via nginx-misc.sh
51
+
- Improves security posture for high-security environments by removing deprecated TLS 1.1 support
0 commit comments