From af9a6477f0d77ce9384347308d5cbdb033965abe Mon Sep 17 00:00:00 2001 From: Murtadha Date: Fri, 19 Jul 2024 17:53:12 -0400 Subject: [PATCH] Used Claude to refactor pipeline code --- nginx.conf | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/nginx.conf b/nginx.conf index e96a8f8..42be402 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,9 +1,16 @@ -server { - listen 80; +http { + server { + listen 80; + server_name localhost; - location / { - root /usr/share/nginx/html; - # index index.html; - try_files $uri $uri/ /index.html; + location / { + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; + } } +} + +events { + worker_connections 1024; } \ No newline at end of file