Nextcloud performance tuning and fix backup cron job
- Set loglevel=2 (warnings) and disable mail_smtpdebug via configs - Enable opcache.enable_file_override for faster file checks - Increase APCu shared memory from 32M to 128M - Fix broken module.nfs_nextcloud_data reference in backup cron job to use the iSCSI PVC directly
This commit is contained in:
parent
8aaa75b57b
commit
120f83ce93
2 changed files with 10 additions and 1 deletions
|
|
@ -366,7 +366,7 @@ resource "kubernetes_cron_job_v1" "nextcloud-backup" {
|
|||
volume {
|
||||
name = "nextcloud-data"
|
||||
persistent_volume_claim {
|
||||
claim_name = module.nfs_nextcloud_data.claim_name
|
||||
claim_name = kubernetes_persistent_volume_claim.nextcloud_data_iscsi.metadata[0].name
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue