<type>(scope): <description>

[body]

[footer(s)]
This commit is contained in:
ITQ
2025-03-01 22:48:36 +03:00
parent 97ebd36b8c
commit f2803e1d10
4 changed files with 67 additions and 0 deletions
+18
View File
@@ -110,6 +110,24 @@ http {
proxy_read_timeout 600s;
}
location /docs {
proxy_pass http://docs:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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;
proxy_cache_bypass $http_upgrade;
proxy_hide_header X-Powered-By;
proxy_connect_timeout 75s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
}
location /static {
rewrite ^/static/(.*)$ /$1 break;
proxy_pass http://backend-staticfiles:80;