Anpassungen

This commit is contained in:
2020-07-17 14:15:15 +02:00
parent 8e7bcecec8
commit 2f5e708438
8 changed files with 51 additions and 23 deletions

9
docker/mariadb/my.cnf Normal file
View File

@@ -0,0 +1,9 @@
[mariadb]
# Logging
general_log_file = /var/log/mariadb/mysql.log
general_log = 1
log_warnings = 2
log_error = /var/log/mariadb/mariadb_error.log
slow_query_log_file = /var/log/mariadb/mariadb_slow.log

View File

@@ -1,3 +1,3 @@
FROM php:7.2-fpm
FROM php:7.4.8-fpm-alpine3.12
RUN docker-php-ext-install mysqli

View File

@@ -5,7 +5,8 @@ error_reporting=E_ALL & ~E_DEPRECATED & ~E_STRICT
display_errors=Off
max_execution_time=60
memory_limit=256M
error_log = /var/log/php/error.log
access_log = /var/log/php/access.log
post_max_size = 24M
upload_max_filesize = 24M
error_log=/var/log/php/error.log
access_log=/var/log/php/access.log
post_max_size=24M
upload_max_filesize=24M
short_open_tag=On

View File

@@ -1,11 +0,0 @@
[www]
user = www-data
group = www-data
listen = nginx:9000
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3