feat: proxy api requests via frontend
All checks were successful
Build and Deploy Go App / build (push) Successful in 8m23s
Build and Deploy Go App / deploy (push) Successful in 3m31s

This commit is contained in:
nihonium 2025-10-26 04:06:38 +03:00
parent 66281838b2
commit 6ed47b667c
Signed by: nihonium
GPG key ID: 0251623741027CFC
4 changed files with 32 additions and 2 deletions

View file

@ -1,4 +1,5 @@
FROM nginx:alpine
COPY modules/frontend/dist /usr/share/nginx/html
COPY modules/frontend/nginx-default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]