nginx/html5: Introduce endpoint /bigbluebutton/ping for RTT calc (#20605)

* Introduce endpoint /html5client/ping for RTT calc

* Introduce endpoint /bigbluebutton/ping for RTT calc
This commit is contained in:
Gustavo Trott 2024-06-28 16:51:06 -03:00 committed by GitHub
parent 8943e22564
commit d545343752
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -149,6 +149,14 @@
proxy_set_header X-Original-URI $request_uri;
}
location /bigbluebutton/ping {
default_type text/plain;
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
add_header Pragma "no-cache";
add_header Expires "0";
return 200 "";
}
}
location @error403 {