feature/api-for-subagent #16

Merged
fedorkobylkevitch merged 4 commits from feature/api-for-subagent into main 2026-04-28 21:46:59 +00:00
Showing only changes of commit 5419746b3d - Show all commits

View file

@ -28,11 +28,11 @@ http {
proxy_pass http://browser:6080;
}
location ~ ^/view/(?<owner>[a-f0-9]{16})$ {
location ~ "^/view/(?<owner>[a-f0-9]{16})$" {
return 302 /view/$owner/vnc.html?path=view/$owner/websockify;
}
location ~ ^/view/(?<owner>[a-f0-9]{16})/(?<rest>.*)$ {
location ~ "^/view/(?<owner>[a-f0-9]{16})/(?<rest>.*)$" {
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;