From ef507c6c5be4c69f909afbc8d53fd273782a8bf4 Mon Sep 17 00:00:00 2001 From: wizzdom Date: Sun, 15 Dec 2024 17:37:12 +0000 Subject: [PATCH] thecollegeview: much caches, permissions - add `redis` object cache - add `nginx` static page cache with WP Super Cache - add `nginx` to `www-data` group to avoid permissions conflicts - increase PHP `max_children`, `upload_max_filesize`, `post_max_size` configs --- jobs/socs/mps-thecollegeview.hcl | 80 +++++++++++++++++++++++++------- 1 file changed, 64 insertions(+), 16 deletions(-) diff --git a/jobs/socs/mps-thecollegeview.hcl b/jobs/socs/mps-thecollegeview.hcl index 23eab7e..3dfc84f 100644 --- a/jobs/socs/mps-thecollegeview.hcl +++ b/jobs/socs/mps-thecollegeview.hcl @@ -20,6 +20,9 @@ job "mps-thecollegeview" { port "db" { to = 3306 } + port "redis" { + to = 6379 + } } service { @@ -44,6 +47,7 @@ job "mps-thecollegeview" { task "tcv-nginx" { driver = "docker" + config { image = "nginx:alpine" ports = ["http"] @@ -51,11 +55,14 @@ job "mps-thecollegeview" { "local/nginx.conf:/etc/nginx/nginx.conf", "/storage/nomad/mps-thecollegeview:/var/www/html/", ] + group_add = [82] # www-data in alpine } + resources { cpu = 200 memory = 100 } + template { data = <