From a6cbbdc4d306cabf197c1483a3d4d8b413bcc678 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 18 Nov 2025 07:03:26 +0000 Subject: [PATCH] fix: add certbot volume mount for HTTPS certificates Nginx now properly mounts the Let's Encrypt certificates to serve HTTPS. Job ID: MTAD-IMPL-2025-11-18-CL --- backend/docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml index 484f453..29717d8 100644 --- a/backend/docker-compose.yml +++ b/backend/docker-compose.yml @@ -99,6 +99,7 @@ services: - "443:443" volumes: - ./nginx.conf:/etc/nginx/nginx.conf:ro + - ./certbot/conf:/etc/letsencrypt:ro - ../web/out:/usr/share/nginx/html:ro networks: - mtad-network