-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dockerfiles and fill out php.ini (#158)
* fix: bump up BulkImport's max_execution_time to 300s * config: update Dockerfile and php config
- Loading branch information
1 parent
e90cfd5
commit fbfc02c
Showing
7 changed files
with
132 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,42 @@ | ||
error_reporting=E_ALL & ~E_DEPRECATED | ||
max_execution_time = 30 | ||
memory_limit = 256M | ||
post_max_size = 20M | ||
upload_max_filesize = 20M | ||
max_file_uploads = 20 | ||
|
||
[xdebug] | ||
xdebug.client_host=host.docker.internal | ||
xdebug.mode=develop | ||
|
||
error_reporting = E_ALL | ||
; error_reporting = E_ALL & ~E_DEPRECATED | ||
|
||
display_errors = Off | ||
display_startup_errors = Off | ||
log_errors = On | ||
error_log = /dev/stderr | ||
|
||
allow_url_fopen = On | ||
allow_url_include = Off | ||
expose_php = Off | ||
register_argc_argv = Off | ||
request_order = "GP" | ||
variables_order = "EGPCS" | ||
short_open_tag = Off | ||
html_errors = Off | ||
|
||
; disable_functions = mail | ||
|
||
;;;;;;;;;;;;;;;; | ||
|
||
;; We don't do much with sessions since we don't use the default session implementation anyway | ||
session.gc_divisor = 1000 | ||
session.use_strict_mode = On | ||
|
||
user_ini.filename = None | ||
|
||
zend.assertions = 1 ; best practice is to never disable assertions, especially not on prod! | ||
zend.exception_ignore_args = false ; we disable reporting exceptions on prod, making it safe to keep the args | ||
zend.exception_string_param_max_len = 255 ; default is a stingy 15 | ||
|
||
opcache.enable=1 | ||
|
||
xdebug.client_host = host.docker.internal | ||
xdebug.mode = develop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,42 @@ | ||
error_reporting=E_ALL & ~E_DEPRECATED | ||
max_execution_time = 30 | ||
memory_limit = 256M | ||
post_max_size = 20M | ||
upload_max_filesize = 20M | ||
max_file_uploads = 20 | ||
|
||
[xdebug] | ||
xdebug.client_host=host.docker.internal | ||
xdebug.mode=develop | ||
|
||
error_reporting = E_ALL | ||
; error_reporting = E_ALL & ~E_DEPRECATED | ||
|
||
display_errors = Off | ||
display_startup_errors = Off | ||
log_errors = On | ||
error_log = /dev/stderr | ||
|
||
allow_url_fopen = On | ||
allow_url_include = Off | ||
expose_php = Off | ||
register_argc_argv = Off | ||
request_order = "GP" | ||
variables_order = "EGPCS" | ||
short_open_tag = Off | ||
html_errors = Off | ||
|
||
; disable_functions = mail | ||
|
||
;;;;;;;;;;;;;;;; | ||
|
||
;; We don't do much with sessions since we don't use the default session implementation anyway | ||
session.gc_divisor = 1000 | ||
session.use_strict_mode = On | ||
|
||
user_ini.filename = None | ||
|
||
zend.assertions = 1 ; best practice is to never disable assertions, especially not on prod! | ||
zend.exception_ignore_args = false ; we disable reporting exceptions on prod, making it safe to keep the args | ||
zend.exception_string_param_max_len = 255 ; default is a stingy 15 | ||
|
||
opcache.enable=1 | ||
|
||
xdebug.client_host = host.docker.internal | ||
xdebug.mode = develop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,42 @@ | ||
error_reporting=E_ALL & ~E_DEPRECATED | ||
max_execution_time = 30 | ||
memory_limit = 256M | ||
post_max_size = 20M | ||
upload_max_filesize = 20M | ||
max_file_uploads = 20 | ||
|
||
[xdebug] | ||
xdebug.client_host=host.docker.internal | ||
xdebug.mode=develop | ||
|
||
error_reporting = E_ALL | ||
; error_reporting = E_ALL & ~E_DEPRECATED | ||
|
||
display_errors = Off | ||
display_startup_errors = Off | ||
log_errors = On | ||
error_log = /dev/stderr | ||
|
||
allow_url_fopen = On | ||
allow_url_include = Off | ||
expose_php = Off | ||
register_argc_argv = Off | ||
request_order = "GP" | ||
variables_order = "EGPCS" | ||
short_open_tag = Off | ||
html_errors = Off | ||
|
||
; disable_functions = mail | ||
|
||
;;;;;;;;;;;;;;;; | ||
|
||
;; We don't do much with sessions since we don't use the default session implementation anyway | ||
session.gc_divisor = 1000 | ||
session.use_strict_mode = On | ||
|
||
user_ini.filename = None | ||
|
||
zend.assertions = 1 ; best practice is to never disable assertions, especially not on prod! | ||
zend.exception_ignore_args = false ; we disable reporting exceptions on prod, making it safe to keep the args | ||
zend.exception_string_param_max_len = 255 ; default is a stingy 15 | ||
|
||
opcache.enable=1 | ||
|
||
xdebug.client_host = host.docker.internal | ||
xdebug.mode = develop |