Skip to content

Commit 7f6ccf6

Browse files
author
Dmitry Smirnov
committed
configs updates
1 parent 391e332 commit 7f6ccf6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile.variables

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ HOST_PORT := 80
2727
CONTAINER_PORT := 80
2828

2929
# PHP Configuration
30-
PHP_VERSION := 8.3
30+
PHP_VERSION := 8.4
3131

3232
# Paths
3333
SRC_PATH := src

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ APP_PATH=/path/to/your-php-app make run
107107

108108
You can configure build and runtime variables in `Makefile.variables`:
109109

110-
- PHP and NGINX versions. _(Only PHP8.3 supported for now)_
110+
- PHP and NGINX versions. _(Only PHP8.4 supported for now)_
111111
- Port mappings
112112
- Source paths
113113

bin/start-php-fpm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
# Default configuration
5-
PHP_VERSION=${PHP_VERSION:-"8.3"}
5+
PHP_VERSION=${PHP_VERSION:-"8.4"}
66
PHP_CONFIG_DIR=${PHP_CONFIG_DIR:-"/etc/php/${PHP_VERSION}"}
77

88
# Read paths from config files

etc/configs/worker/services.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
autostart: "true"
88
autorestart: "true"
99
envs:
10-
- "PHP_VERSION=8.3"
10+
- "PHP_VERSION=8.4"
1111
- name: "nginx"
1212
command: "/usr/local/bin/start-nginx.sh"
1313
autostart: "true"

0 commit comments

Comments
 (0)