git: 원격 저장소 연결 및 초기 커밋

Made-with: Cursor
This commit is contained in:
2026-04-13 13:50:17 +09:00
commit 3286159154
38 changed files with 7830 additions and 0 deletions

10
nginx.conf Normal file
View File

@@ -0,0 +1,10 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}