Skip to content

Commit 31b7961

Browse files
committed
feat(docker): add APCu configuration to php.ini examples
1 parent e12948a commit 31b7961

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

php-fpm/php.ini.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ opcache.fast_shutdown = 1
2828
opcache.enable_file_override = 1
2929
opcache.huge_code_pages = 1
3030

31+
; APCu Settings
32+
apc.enabled = 1
33+
apc.enable_cli = 1
34+
apc.shm_size = 128M
35+
3136
; Xdebug Configuration (if extension is loaded)
3237
xdebug.mode = debug
3338
xdebug.start_with_request = trigger

workspace/php.ini.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ opcache.fast_shutdown = 1
2828
opcache.enable_file_override = 1
2929
opcache.huge_code_pages = 1
3030

31+
; APCu Settings
32+
apc.enabled = 1
33+
apc.enable_cli = 1
34+
apc.shm_size = 128M
35+
3136
; Xdebug Configuration (if extension is loaded)
3237
xdebug.mode = debug
3338
xdebug.start_with_request = trigger

0 commit comments

Comments
 (0)