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,16 +1,16 @@
http {
server {
listen 80;
server_name localhost;
location / { server {
root /usr/share/nginx/html; listen 80;
index index.html; server_name localhost;
try_files $uri $uri/ /index.html;
} location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
} }
} }
events { events {
worker_connections 1024; worker_connections 1024;
} }