1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

change docker555

This commit is contained in:
MoonTestUse1
2024-12-24 02:05:39 +06:00
parent 4efa38a9d8
commit f132f5e4eb
2 changed files with 43 additions and 7 deletions

View File

@@ -1,7 +1,10 @@
# Upstream backend servers
upstream backend {
server backend:8000;
keepalive 32;
}
# Main server configuration
server {
listen 80;
server_name localhost;
@@ -9,13 +12,18 @@ server {
root /usr/share/nginx/html;
index index.html;
# Frontend static files
location / {
try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache";
expires -1;
add_header Cache-Control "no-store, no-cache, must-revalidate";
}
# Backend API proxy
location /api/ {
proxy_pass http://backend/api/;
proxy_pass http://backend;
# Proxy headers
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
@@ -24,5 +32,16 @@ server {
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;
# Timeouts
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
# Security headers
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-XSS-Protection "1; mode=block" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "no-referrer-when-downgrade" always;
}