add dockerfile with nginx

This commit is contained in:
2024-08-25 21:11:56 +07:00
parent dd22e8e29e
commit 5eb58cb3e2
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
server {
listen 80;
location / {
root /opt/litterlink;
index index.html;
}
}