feat: proxy api requests via frontend

This commit is contained in:
nihonium 2025-10-26 04:06:38 +03:00
parent 66281838b2
commit 6ed47b667c
Signed by untrusted user: 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;"]