From 4f55468fe981fdc4e1fca2b3181db4cb1a0d7ed5 Mon Sep 17 00:00:00 2001 From: toir-bot Date: Mon, 13 Apr 2026 10:54:43 +0000 Subject: [PATCH] chore: initial project scaffold: frontend/nginx.conf --- frontend/nginx.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 frontend/nginx.conf diff --git a/frontend/nginx.conf b/frontend/nginx.conf new file mode 100644 index 0000000..e864e54 --- /dev/null +++ b/frontend/nginx.conf @@ -0,0 +1,14 @@ +server { + listen 80; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } + + location /assets/ { + expires 1y; + add_header Cache-Control "public, immutable"; + } +}