From 1bcf095623d7c15ff376a6aa0fb8b25698d074e1 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Tue, 5 Mar 2024 16:06:25 -0600 Subject: [PATCH] Run one WSGI process per Topology container (we will use Kubernetes replicas for load balancing) This should avoid conflicts from concurrent git pulls, and give us better metrics (since we'll have one `/metrics` endpoint per pod). --- docker/apache.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/apache.conf b/docker/apache.conf index a68ab9ba3..4c9f5b566 100644 --- a/docker/apache.conf +++ b/docker/apache.conf @@ -5,7 +5,7 @@ LoadModule wsgi_module /usr/local/lib64/python3.9/site-packages/mod_wsgi/server/ WSGIPythonPath /app # Run apps in separate processes to stop yaml.CSafeLoader import-time error -WSGIDaemonProcess topology home=/app processes=5 +WSGIDaemonProcess topology home=/app WSGIDaemonProcess topomerge home=/app # vhost for topology, SSL terminated here (for gridsite auth)