mirror of
https://github.com/v2board/v2board.git
synced 2025-09-17 19:53:09 +08:00
feat: adds the possibility of using docker for local deployment using docker-compose.
- nginx - phpmyadmin - php v8.2 - redis - mysql - supervisor
This commit is contained in:
6
docker/php-ini/20-xdebug.ini
Normal file
6
docker/php-ini/20-xdebug.ini
Normal file
@ -0,0 +1,6 @@
|
||||
xdebug.start_with_request = no
|
||||
xdebug.mode = debug
|
||||
xdebug.client_host = host.docker.internal
|
||||
xdebug.client_port = 9003
|
||||
xdebug.remote_cookie_expire_time = 36000
|
||||
xdebug.idekey = PHPSTORM
|
17
docker/php-ini/99-php.ini
Normal file
17
docker/php-ini/99-php.ini
Normal file
@ -0,0 +1,17 @@
|
||||
allow_url_fopen = On
|
||||
allow_url_include = Off
|
||||
asp_tags = Off
|
||||
display_errors = On
|
||||
display_startup_errors = On
|
||||
error_reporting = E_ALL
|
||||
enable_dl = Off
|
||||
file_uploads = On
|
||||
max_execution_time = 300
|
||||
max_input_time = 60
|
||||
max_input_vars = 100000
|
||||
memory_limit = 1024M
|
||||
session.gc_maxlifetime = 1440
|
||||
upload_max_filesize = 250M
|
||||
post_max_size = 500M
|
||||
max_file_uploads = 50
|
||||
date.timezone = UTC
|
Reference in New Issue
Block a user