chore: Dockerize method

This commit is contained in:
2025-10-07 08:03:28 +05:45
parent be4db34031
commit 4b1ada1fa8
5 changed files with 61 additions and 0 deletions

14
nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}