cicd test
Some checks failed
Build And Test / build-and-push (push) Failing after 2m30s

This commit is contained in:
2025-04-22 00:18:33 +09:00
parent 89c1796e5d
commit 8fcb2cada3

30
nginx.conf Normal file
View File

@ -0,0 +1,30 @@
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}