Skip to content

Commit

Permalink
add microphone
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandredevely authored Jan 25, 2025
1 parent e90feb8 commit 3163bba
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions etc/nginx/route.conf
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,16 @@
break;
}

location /microphone {
set $jwt_token $args;
if ($arg_jwt_token) {
set $jwt_token $arg_jwt_token;
}
include ws.conf;
proxy_pass http://$target:$microphone_service_tcp_port/;
break;
}

# proxy requests to user pod speedtest service
location /speedtest {
gzip off; # use raw data for speedtest
Expand Down

0 comments on commit 3163bba

Please sign in to comment.