Spaces:
Build error
Build error
Create config/php.ini
Browse files- config/php.ini +22 -0
config/php.ini
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
; Upload limits
|
| 2 |
+
upload_max_filesize=64M
|
| 3 |
+
post_max_size=68M
|
| 4 |
+
max_execution_time=60
|
| 5 |
+
memory_limit=256M
|
| 6 |
+
|
| 7 |
+
; Sessions stored in /data so they survive restarts
|
| 8 |
+
session.save_path=/data/sessions
|
| 9 |
+
|
| 10 |
+
; OPcache
|
| 11 |
+
opcache.enable=1
|
| 12 |
+
opcache.memory_consumption=128
|
| 13 |
+
opcache.max_accelerated_files=10000
|
| 14 |
+
opcache.revalidate_freq=2
|
| 15 |
+
|
| 16 |
+
; Error logging
|
| 17 |
+
display_errors=Off
|
| 18 |
+
log_errors=On
|
| 19 |
+
error_log=/data/logs/php_errors.log
|
| 20 |
+
|
| 21 |
+
; Timezone
|
| 22 |
+
date.timezone=UTC
|