18 lines
390 B
Plaintext
18 lines
390 B
Plaintext
|
|
[mysqld]
|
||
|
|
# Performance tuning for WordPress
|
||
|
|
max_allowed_packet=256M
|
||
|
|
innodb_buffer_pool_size=256M
|
||
|
|
innodb_log_file_size=64M
|
||
|
|
innodb_file_per_table=1
|
||
|
|
innodb_flush_method=O_DIRECT
|
||
|
|
innodb_flush_log_at_trx_commit=2
|
||
|
|
query_cache_type=1
|
||
|
|
query_cache_size=32M
|
||
|
|
query_cache_limit=2M
|
||
|
|
|
||
|
|
# Character set
|
||
|
|
character-set-server=utf8mb4
|
||
|
|
collation-server=utf8mb4_unicode_ci
|
||
|
|
|
||
|
|
[client]
|
||
|
|
default-character-set=utf8mb4
|