Used Claude to refactor pipeline code
This commit is contained in:
parent
4cb47e4c59
commit
af9a6477f0
1 changed files with 13 additions and 6 deletions
|
|
@ -1,9 +1,16 @@
|
||||||
|
http {
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
server_name localhost;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
# index index.html;
|
index index.html;
|
||||||
try_files $uri $uri/ /index.html;
|
try_files $uri $uri/ /index.html;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue