From 61ff0b497aa4a0f69a29b080d6de528d1c520f07 Mon Sep 17 00:00:00 2001 From: Murtadha Date: Fri, 19 Jul 2024 17:56:19 -0400 Subject: [PATCH] Used Claude to refactor pipeline code --- nginx.conf | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nginx.conf b/nginx.conf index 42be402..02e7eab 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,16 +1,16 @@ -http { - server { - listen 80; - server_name localhost; - location / { - root /usr/share/nginx/html; - index index.html; - try_files $uri $uri/ /index.html; - } +server { + listen 80; + server_name localhost; + + 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