From 25a1e5347ed15d8a24bc2956eebcecd6bf52d011 Mon Sep 17 00:00:00 2001
From: henridb <henridb@stud.ntnu.no>
Date: Thu, 2 May 2024 23:12:35 +0200
Subject: [PATCH] fix: fix 14

---
 web/nginx.conf | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/web/nginx.conf b/web/nginx.conf
index 9a8b5cf..af76966 100644
--- a/web/nginx.conf
+++ b/web/nginx.conf
@@ -27,9 +27,8 @@ http {
             ssl_certificate /etc/ssl/certs/nginx-selfsigned.crt;
             ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;
 
-            ssl_session_cache shared:SSL:1m;
-            ssl_session_timeout  10m;
-            ssl_ciphers HIGH:!aNULL:!MD5;
+            ssl_protocols TLSv1.2 TLSv1.3;
+            ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384';
             ssl_prefer_server_ciphers on;
 
             location / {
-- 
GitLab