From 4325116903a5559e0f9d4ff255f71ec698ef874a Mon Sep 17 00:00:00 2001 From: Vivek Date: Mon, 8 Jun 2026 08:31:42 +0000 Subject: [PATCH] Add nginx.conf and .dockerignore for Coolify --- .dockerignore | 9 +++++++++ nginx.conf | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .dockerignore create mode 100644 nginx.conf diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8463d5d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,9 @@ +node_modules +dist +.git +.gitignore +Dockerfile +docker-compose.yml +*.log +*.md +*.sql \ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..6270228 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + server_name _; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file