From e41b654bee4ad97d2a8d91f23b36cf20a5bf5085 Mon Sep 17 00:00:00 2001
From: Ivan Procaccini <ivanprocaccini905@gmail.com>
Date: Mon, 5 Sep 2022 10:34:36 +0200
Subject: [PATCH] Fix: Use correct locator of the web docker service in the
 NGINX conf

---
 nginx/ssl.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nginx/ssl.conf b/nginx/ssl.conf
index 5aebbdb..9ab9cd0 100644
--- a/nginx/ssl.conf
+++ b/nginx/ssl.conf
@@ -28,7 +28,7 @@ server {
 
     location / {
             # Pass the request to Gunicorn
-            proxy_pass http://127.0.0.1:8000;
+            proxy_pass http://web:8000;
 
             # Set HTTP headers st our app knows where request came from
             proxy_set_header Host $host;
-- 
GitLab