Skip to content

Commit 4c4a436

Browse files
authored
Merge branch 'release/bugfixes-and-dependency-updates' into fix/laravel-automations
2 parents 9d3f0a4 + 7f2836a commit 4c4a436

File tree

3 files changed

+23
-18
lines changed

3 files changed

+23
-18
lines changed

docs/content/docs/8.reference/1.environment-variable-specification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Setting environment variables all depends on what method you're using to run you
7373
`NGINX_LISTEN_IP_PROTOCOL`<br />*Default: "all"*|Set the IP protocol for NGINX to listen on. Valid values are "all", "ipv4", and "ipv6". (<a target="_blank" href="https://nginx.org/en/docs/http/ngx_http_core_module.html#listen">Official Docs</a>)|fpm-nginx
7474
`NGINX_SERVER_TOKENS`<br />*Default: "off"*|Display NGINX version in responses. (<a target="_blank" href="https://nginx.org/en/docs/http/ngx_http_core_module.html#server_tokens">Official Docs</a>)|fpm-nginx
7575
`NGINX_WEBROOT`<br />*Default: "`/var/www/html/public"*|Sets the root directory for requests. (<a target="_blank" href="https://nginx.org/en/docs/http/ngx_http_core_module.html#root">Official Docs</a>)|fpm-nginx
76-
`NGINX_CLIENT_MAX_BODY_SIZE`<br />*Default: "100M"*|Sets the max body size for requests. (<a target="_blank" href="https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size">Official Docs</a)|fpm-nginx
76+
`NGINX_CLIENT_MAX_BODY_SIZE`<br />*Default: "100M"*|Sets the max body size for requests. (<a target="_blank" href="https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size">Official Docs</a>)|fpm-nginx
7777
`PHP_DATE_TIMEZONE`<br />*Default: "UTC"*|Control your timezone. (<a target="_blank" href="https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone">Official Docs</a>)|all
7878
`PHP_DISPLAY_ERRORS`<br />*Default: Off*|Show PHP errors on screen. (<a target="_blank" href="https://www.php.net/manual/en/errorfunc.configuration.php#ini.display-errors">Official docs</a>)|all
7979
`PHP_DISPLAY_STARTUP_ERRORS`<br />*Default: Off*|Even when display_errors is on, errors that occur during PHP's startup sequence are not displayed. (<a target="_blank" href="https://www.php.net/manual/en/errorfunc.configuration.php#ini.display-startup-errors">Official docs</a>)| all
@@ -118,4 +118,4 @@ Setting environment variables all depends on what method you're using to run you
118118
`SHOW_WELCOME_MESSAGE`<br />*Default: "true"*|Show a helpful welcome message showing container information when the container starts.|all
119119
`SSL_CERTIFICATE_FILE`<br />*Default: "/etc/ssl/private/self-signed-web.crt"*|Path to public certificate file for HTTPS. You must provide this file otherwise a self-signed key pair will be generated for you.|fpm-nginx,<br />fpm-apache
120120
`SSL_MODE`<br />*Default: "off"*|Configure how you would like to handle SSL. This can be "off" (HTTP only), "mixed" (HTTP + HTTPS), or "full" (HTTPS only). If you use HTTP, you may need to also change `PHP_SESSION_COOKIE_SECURE`.|fpm-nginx,<br />fpm-apache,<br />frankenphp
121-
`SSL_PRIVATE_KEY_FILE`<br />*Default: "/etc/ssl/private/self-signed-web.key"*|Path to private key file for HTTPS. You must provide this file otherwise a self-signed key pair will be generated for you.|fpm-nginx,<br />fpm-apache, <br />frankenphp
121+
`SSL_PRIVATE_KEY_FILE`<br />*Default: "/etc/ssl/private/self-signed-web.key"*|Path to private key file for HTTPS. You must provide this file otherwise a self-signed key pair will be generated for you.|fpm-nginx,<br />fpm-apache, <br />frankenphp

scripts/conf/php-versions-base-config.yml

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -35,42 +35,43 @@ php_versions:
3535
- minor: "8.1"
3636
base_os:
3737
- name: alpine3.21
38+
- name: alpine3.22
3839
- name: bookworm
3940
- name: trixie
4041
patch_versions:
41-
# - 8.1.28 # Pull latest from Official PHP source
42+
# - 8.1.34 # Pull latest from Official PHP source
4243
- minor: "8.2"
4344
base_os:
44-
- name: alpine3.21
4545
- name: alpine3.22
46+
- name: alpine3.23
4647
- name: bookworm
4748
- name: trixie
4849
patch_versions:
49-
# - 8.2.18 # Pull latest from Official PHP source
50+
# - 8.2.30 # Pull latest from Official PHP source
5051
- minor: "8.3"
5152
base_os:
52-
- name: alpine3.21
5353
- name: alpine3.22
54+
- name: alpine3.23
5455
- name: bookworm
5556
- name: trixie
5657
patch_versions:
57-
# - 8.3.6 # Pull latest from Official PHP source
58+
# - 8.3.29 # Pull latest from Official PHP source
5859
- minor: "8.4"
5960
base_os:
60-
- name: alpine3.21
6161
- name: alpine3.22
62+
- name: alpine3.23
6263
- name: bookworm
6364
- name: trixie
6465
patch_versions:
65-
# - 8.4.1 # Pull latest from Official PHP source
66+
# - 8.4.16 # Pull latest from Official PHP source
6667
- minor: "8.5"
6768
base_os:
68-
- name: alpine3.21
6969
- name: alpine3.22
70+
- name: alpine3.23
7071
- name: bookworm
7172
- name: trixie
7273
patch_versions:
73-
# - 8.5.0 # Pull latest from Official PHP source
74+
# - 8.5.1 # Pull latest from Official PHP source
7475

7576
operating_systems:
7677
- family: alpine
@@ -94,27 +95,31 @@ operating_systems:
9495
- name: "Alpine 3.20"
9596
version: alpine3.20
9697
number: 3.20
97-
nginx_version: 1.28.0-r1
98+
nginx_version: 1.28.1-r1
9899
- name: "Alpine 3.21"
99100
version: alpine3.21
100101
number: 3.21
101-
nginx_version: 1.28.0-r1
102+
nginx_version: 1.28.1-r1
102103
- name: "Alpine 3.22"
103104
version: alpine3.22
104105
number: 3.22
105-
nginx_version: 1.28.0-r1
106+
nginx_version: 1.28.1-r1
107+
- name: "Alpine 3.23"
108+
version: alpine3.23
109+
number: 3.23
110+
nginx_version: 1.28.1-r1
106111
- family: debian
107112
default: true
108113
versions:
109114
- name: "Debian Bullseye"
110115
version: bullseye
111116
number: 11
112-
nginx_version: 1.28.0-1~bullseye
117+
nginx_version: 1.28.1-1~bullseye
113118
- name: "Debian Bookworm"
114119
version: bookworm
115120
number: 12
116-
nginx_version: 1.28.0-1~bookworm
121+
nginx_version: 1.28.1-1~bookworm
117122
- name: "Debian Trixie"
118123
version: trixie
119124
number: 13
120-
nginx_version: 1.28.0-1~trixie
125+
nginx_version: 1.28.1-1~trixie

src/common/usr/local/bin/docker-php-serversideup-install-php-ext-installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ script_name="docker-php-serversideup-install-php-ext-installer"
1111
############
1212
# Environment variables
1313
############
14-
PHP_EXT_INSTALLER_VERSION="2.9.18"
14+
PHP_EXT_INSTALLER_VERSION="2.9.27"
1515

1616
############
1717
# Main

0 commit comments

Comments
 (0)