Files
msa-fe/nginx.conf
icurfer 8fcb2cada3
Some checks failed
Build And Test / build-and-push (push) Failing after 2m30s
cicd test
2025-04-22 00:18:33 +09:00

31 lines
534 B
Nginx Configuration File

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;
}
}
}