From 8fcb2cada3bad2f8d57f97c50ab8f4594b3ef453 Mon Sep 17 00:00:00 2001 From: icurfer Date: Tue, 22 Apr 2025 00:18:33 +0900 Subject: [PATCH] cicd test --- nginx.conf | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..4e5d240 --- /dev/null +++ b/nginx.conf @@ -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; + } + } +}