Skip to content

Commit

Permalink
Release 7.6.15 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Sep 14, 2023
1 parent e472c1e commit 1898500
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 7.6.15 2023-09-13 <dave at tiredofit dot ca>

### Changed
- Fix PHP_TIMEOUT not affecting php-cli operations causing unnecessary Signal 15s in some cases


## 7.6.14 2023-09-05 <fermion2020@github>

### Changed
Expand Down
1 change: 1 addition & 0 deletions install/assets/defaults/20-php-fpm
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ PHP_OPCACHE_REVALIDATE_FREQ=${PHP_OPCACHE_REVALIDATE_FREQ:-"2"}
PHP_OPCACHE_SAVE_COMMENTS=${PHP_OPCACHE_SAVE_COMMENTS:-"1"}
PHP_OPCACHE_VALIDATE_TIMESTAMPS=${PHP_OPCACHE_VALIDATE_TIMESTAMPS:-"1"}
PHP_POST_MAX_SIZE=${PHP_POST_MAX_SIZE:-"2G"}

PHP_TIMEOUT=${PHP_TIMEOUT:-"180"}
PHP_UPLOAD_MAX_SIZE=${PHP_UPLOAD_MAX_SIZE:-"2G"}
PHP_VERSION=${PHP_VERSION:-$(php -v 2>/dev/null | grep "^PHP " | head -n 1 | awk '{print $2}')}
Expand Down
1 change: 1 addition & 0 deletions install/assets/functions/20-php-fpm
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ phpfpm_configure_server() {

sed -i \
-e "s#memory_limit = .*#memory_limit = ${PHP_MEMORY_LIMIT}#g" \
-e "s#max_execution_time = .*#max_execution_time = ${PHP_TIMEOUT}#g" \
-e "s#max_input_time = .*#max_input_time = ${PHP_TIMEOUT}#g" \
-e "s#default_socket_timeout = .*#default_socket_timeout = ${PHP_TIMEOUT}#g" \
-e "s#post_max_size = .*#post_max_size = ${PHP_UPLOAD_MAX_SIZE}#g" \
Expand Down

0 comments on commit 1898500

Please sign in to comment.