1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
This commit is contained in:
MoonTestUse1
2024-12-23 22:39:38 +06:00
parent ce4fa7beaf
commit d38cc27033
2 changed files with 24 additions and 6 deletions

View File

@@ -1,11 +1,21 @@
FROM node:18-alpine as build FROM node:18-alpine as build
WORKDIR /app WORKDIR /app
# Копируем файлы package.json и package-lock.json
COPY package*.json ./ COPY package*.json ./
# Устанавливаем зависимости
RUN npm install RUN npm install
# Копируем исходный код
COPY . . COPY . .
# Собираем приложение
RUN npm run build RUN npm run build
# Настраиваем nginx
FROM nginx:alpine FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html COPY --from=build /app/dist /usr/share/nginx/html
COPY docker/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

View File

@@ -1,20 +1,28 @@
upstream backend { upstream backend {
server backend:8000; server backend:8080;
} }
server { server {
listen 80; listen 80;
server_name localhost; server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Обработка статических файлов
location / { location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache";
} }
location /api { # Проксирование API запросов
proxy_pass http://backend; location /api/ {
proxy_pass http://backend/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;