auto update repo

This commit is contained in:
ddadmin 2026-02-03 15:24:01 +03:00
parent e350f84afa
commit f45b265c11
3 changed files with 24 additions and 3 deletions

View File

@ -24,13 +24,23 @@ server {
proxy_cache off;
}
location /connection/websocket {
location /connection/websocket {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://centrifugo;
}
}
location /socket.io/auctionreload {
access_log /var/log/nginx/ws_access.log json;
error_log /var/log/nginx/ws_error.log;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
proxy_pass http://php-socket:8080/;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;

View File

@ -29,6 +29,17 @@ server {
proxy_cache off;
}
location /socket.io/auctionreload {
access_log /var/log/nginx/ws_access.log json;
error_log /var/log/nginx/ws_error.log;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
proxy_pass http://php-socket:8080/;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;
}