Merge pull request #6 from evansvl/main

Фикс 403 ошибки при перезагрузки или попытки входа через Telegram
This commit is contained in:
Egor
2026-01-17 19:47:01 +03:00
committed by GitHub
2 changed files with 30 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ FROM nginx:alpine
# Copy built assets from builder stage # Copy built assets from builder stage
COPY --from=builder /app/dist /usr/share/nginx/html COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port # Expose port
EXPOSE 80 EXPOSE 80

29
nginx.conf Normal file
View File

@@ -0,0 +1,29 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# SPA fallback
location / {
try_files $uri /index.html;
}
# API проксировать, если нужно
location /api/ {
try_files $uri /index.html;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# Optional: кэширование статических файлов
location ~* \.(?:ico|css|js|gif|jpe?g|png|woff2?|eot|ttf|svg)$ {
expires 1y;
access_log off;
add_header Cache-Control "public";
}
}