front to consta
clean dotnet backend
This commit is contained in:
@@ -4,6 +4,17 @@ server {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
# Проксирование API-запросов во внутренний сервис backend-dotnet
|
||||
# Важно: без завершающего слэша, чтобы путь /api/... не обрезался до /...
|
||||
location /api/ {
|
||||
proxy_pass http://backend-dotnet:8000;
|
||||
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;
|
||||
}
|
||||
|
||||
# MIME types for JavaScript modules
|
||||
location ~* \.js$ {
|
||||
add_header Content-Type application/javascript;
|
||||
@@ -19,5 +30,4 @@ server {
|
||||
gzip_vary on;
|
||||
gzip_min_length 1024;
|
||||
gzip_types text/plain text/css text/xml text/javascript application/javascript application/json application/xml+rss;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user