Used Claude to refactor pipeline code

This commit is contained in:
Murtadha 2024-07-19 17:56:19 -04:00
parent 4b9e9ad485
commit 61ff0b497a

View file

@ -1,5 +1,5 @@
http {
server { server {
listen 80; listen 80;
server_name localhost; server_name localhost;
@ -8,9 +8,9 @@ http {
index index.html; index index.html;
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
} }
}
} }
events { events {
worker_connections 1024; worker_connections 1024;
} }