mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
21:43
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
server {
|
||||
listen 80;
|
||||
listen 80 default_server;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
# Отключаем автоиндексацию для продакшена
|
||||
# Отключаем автоиндексацию
|
||||
autoindex off;
|
||||
|
||||
# Основной location для всех маршрутов
|
||||
# Основной location для SPA
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
add_header Cache-Control "no-cache";
|
||||
@@ -16,7 +16,7 @@ server {
|
||||
|
||||
# API requests
|
||||
location /api/ {
|
||||
proxy_pass http://backend:8000/;
|
||||
proxy_pass http://backend:8000;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection 'upgrade';
|
||||
@@ -27,16 +27,13 @@ server {
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
# Static files caching
|
||||
# Static files
|
||||
location /assets/ {
|
||||
alias /usr/share/nginx/html/assets/;
|
||||
expires 1y;
|
||||
add_header Cache-Control "public, no-transform";
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
# Prevent access to . files
|
||||
location ~ /\. {
|
||||
deny all;
|
||||
}
|
||||
# Обработка ошибок
|
||||
error_page 404 /index.html;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user