- Increase MaxRequestWorkers from 150 to 400 to prevent "server reached MaxRequestWorkers" errors - Configure MPM Prefork module with optimized worker settings - Add AllowEncodedSlashes NoDecode for special characters in filenames - Increase Redis maxmemory from 512MB to 2GB for better caching - Extend PHP execution times from 1800s to 7200s for large operations - Increase MariaDB max_allowed_packet to 1GB for large file uploads These changes resolve sync failures caused by Apache worker exhaustion. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
19 lines
398 B
INI
19 lines
398 B
INI
[mysqld]
|
|
# Performance InnoDB
|
|
innodb_buffer_pool_size = 2G
|
|
innodb_io_capacity = 200
|
|
innodb_io_capacity_max = 400
|
|
innodb_read_io_threads = 4
|
|
innodb_write_io_threads = 4
|
|
innodb_log_file_size = 512M
|
|
|
|
# Nextcloud optimizations
|
|
transaction-isolation = READ-COMMITTED
|
|
binlog_format = ROW
|
|
|
|
# Connections
|
|
max_connections = 200
|
|
|
|
# Gros fichiers - augmenter la taille max des paquets
|
|
max_allowed_packet = 1G
|