-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphp.ini
More file actions
37 lines (31 loc) · 730 Bytes
/
php.ini
File metadata and controls
37 lines (31 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
; OPcache settings
opcache.enable=1
opcache.enable_cli=1
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=10000
opcache.revalidate_freq=2
opcache.save_comments=1
opcache.fast_shutdown=1
; PHP settings
memory_limit=256M
max_execution_time=300
max_input_time=300
post_max_size=50M
upload_max_filesize=50M
; gRPC settings
grpc.enable_fork_support=1
grpc.poll_strategy=epoll1
grpc.max_receive_message_length=4194304
grpc.max_send_message_length=4194304
; Error reporting
display_errors=Off
log_errors=On
error_log=/var/log/php_errors.log
; Process control
pcntl.async_signals=On
; Timezone
date.timezone=UTC
; Session (if needed)
session.save_handler=files
session.save_path="/tmp"