Further hopeless hacking

This commit is contained in:
decentral1se 2021-09-15 11:12:53 +02:00
parent 56f616081c
commit 63741bb0a7
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 39 additions and 15 deletions

View File

@ -1,6 +1,6 @@
export FPM_TUNE_VERSION="v4" export FPM_TUNE_VERSION="v4"
export NGINX_CONF_VERSION="v2" export NGINX_CONF_VERSION="v2"
export MY_CNF_VERSION="v1" export MY_CNF_VERSION="v2"
NC_APP_DIR="app:/var/www/html" NC_APP_DIR="app:/var/www/html"

View File

@ -1,20 +1,37 @@
# Mostly lifted from the following configs:
# https://git.coop/webarch/mariadb/-/blob/master/templates/50-server.cnf.j2
# https://docs.nextcloud.com/server/latest/admin_manual/configuration_database/linux_database_configuration.html # https://docs.nextcloud.com/server/latest/admin_manual/configuration_database/linux_database_configuration.html
# https://mariadb.com/kb/en/library/performance-schema-overview/
[server] [server]
skip_name_resolve = 1 innodb_buffer_pool_instances = 1
innodb_buffer_pool_size = 128M innodb_buffer_pool_size = 1G
innodb_buffer_pool_instances = 1
innodb_flush_log_at_trx_commit = 2 innodb_flush_log_at_trx_commit = 2
innodb_log_buffer_size = 32M innodb_log_buffer_size = 32M
innodb_max_dirty_pages_pct = 90 innodb_max_dirty_pages_pct = 90
query_cache_type = 1 join_buffer_size = 256K
query_cache_limit = 2M key_buffer_size = 16M
query_cache_min_res_unit = 2k innodb_log_file_size = 256M
query_cache_size = 64M long_query_time = 1
tmp_table_size= 64M max_allowed_packet = 64M
max_heap_table_size= 64M max_connections = 100
slow_query_log = 1 max_heap_table_size = 64M
slow_query_log_file = /var/log/mysql/slow.log max_user_connections = 0
long_query_time = 1 myisam_recover_options = BACKUP
open_files_limit = 8000
query_cache_limit = 2M
query_cache_min_res_unit = 2k
query_cache_size = 64M
query_cache_type = 1
skip_name_resolve = 1
slow_query_log = 1
slow_query_log_file = /var/log/mysql/slow.log
table_cache = 64
table_open_cache = 2000
thread_cache_size = 8
thread_concurrency = 10
thread_stack = 192K
tmp_table_size = 64M
[client] [client]
default-character-set = utf8mb4 default-character-set = utf8mb4
@ -27,3 +44,10 @@ binlog_format = ROW
innodb_large_prefix=on innodb_large_prefix=on
innodb_file_format=barracuda innodb_file_format=barracuda
innodb_file_per_table=1 innodb_file_per_table=1
[mariadb]
performance_schema=ON
performance-schema-instrument='stage/%=ON'
performance-schema-consumer-events-stages-current=ON
performance-schema-consumer-events-stages-history=ON
performance-schema-consumer-events-stages-history-long=ON