Initial commit

This commit is contained in:
wsc-admin
2026-04-02 19:35:42 +09:00
commit 5522c1f096
14 changed files with 132 additions and 0 deletions

9
nginx.conf Normal file
View File

@@ -0,0 +1,9 @@
server {
listen 80;
location / {
root /usr/share/nginx/html/;
include /etc/nginx/mime.types;
try_files $uri $uri/ /index.html;
}
}