Add nginx.conf and .dockerignore for Coolify

This commit is contained in:
Vivek 2026-06-08 08:31:42 +00:00
parent 7d13c8e65e
commit 4325116903
2 changed files with 20 additions and 0 deletions

9
.dockerignore Normal file
View file

@ -0,0 +1,9 @@
node_modules
dist
.git
.gitignore
Dockerfile
docker-compose.yml
*.log
*.md
*.sql

11
nginx.conf Normal file
View file

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