Used Claude to refactor pipeline code
This commit is contained in:
parent
4b9e9ad485
commit
61ff0b497a
1 changed files with 9 additions and 9 deletions
18
nginx.conf
18
nginx.conf
|
|
@ -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;
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue