Used Claude to refactor pipeline code

This commit is contained in:
Murtadha 2024-07-19 18:11:56 -04:00
parent eeb659a3a6
commit 7665166847
2 changed files with 26 additions and 13 deletions

View file

@ -1,16 +1,19 @@
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;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}
}