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 / {
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;
}