📝Updated documentation for the backend services

This commit is contained in:
Anton SHEPILOV
2024-05-28 16:46:01 +02:00
committed by Anton Shepilov
parent 904b767382
commit 3cf164787f
26 changed files with 193 additions and 248 deletions
-13
View File
@@ -68,19 +68,6 @@ server {
proxy_pass ${NODE_HOST};
}
location ~ ^/socket/.* {
proxy_pass ${NODE_HOST};
# this magic is needed for WebSocket
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_connect_timeout 7d;
proxy_send_timeout 7d;
proxy_read_timeout 7d;
}
location ~ ^/(ajax|api|administration|upload|bundle|medias).* {
# try to serve file directly, fallback to rewrite
try_files $uri @rewriteapp;