File tree 3 files changed +10
-4
lines changed
docs/02-admin/01-installation
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 156
156
"ergebnis/composer-normalize" : true
157
157
},
158
158
"optimize-autoloader" : true ,
159
+ "classmap-authoritative" : true ,
159
160
"preferred-install" : {
160
161
"*" : " dist"
161
162
},
Original file line number Diff line number Diff line change @@ -8,4 +8,7 @@ opcache.enable_cli=1
8
8
opcache.memory_consumption =512
9
9
opcache.interned_strings_buffer =128
10
10
opcache.max_accelerated_files =100000
11
- opcache.jit_buffer_size =500M
11
+ opcache.validate_timestamps =0
12
+ opcache.preload =/var/www/mbin/config/preload.php
13
+ opcache.preload_user =www-data
14
+ opcache.jit_buffer_size =500M
Original file line number Diff line number Diff line change @@ -265,18 +265,20 @@ realpath_cache_size = 4096K
265
265
realpath_cache_ttl = 600
266
266
```
267
267
268
- Optionally also enable OPCache for improved performances with PHP (recommended for both fpm and cli ini files ):
268
+ Optionally also enable OPCache for improved performances with PHP (replace ` /var/www/mbin ` with ` /var/www/kbin ` if needed ):
269
269
270
270
``` ini
271
271
opcache.enable = 1
272
272
opcache.enable_cli = 1
273
+ opcache.preload = /var/www/mbin/config/preload.php
274
+ opcache.preload_user = www-data
273
275
; Memory consumption (in MBs), personal preference
274
276
opcache.memory_consumption = 512
275
277
; Internal string buffer (in MBs), personal preference
276
278
opcache.interned_strings_buffer = 128
277
279
opcache.max_accelerated_files = 100000
278
- ; Enable PHP JIT with all optimizations
279
- opcache.jit = 1255
280
+ opcache.validate_timestamps = 0
281
+ ; Enable PHP JIT
280
282
opcache.jit_buffer_size = 500M
281
283
```
282
284
You can’t perform that action at this time.
0 commit comments