feat: add Dockerfile and Nginx configuration for deployment

This commit is contained in:
2025-09-02 03:38:24 +03:00
parent 15a085721e
commit 01260d0768
4 changed files with 1226 additions and 0 deletions

12
nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
sendfile on;
}
}