6799809b6b
For now, we will not rebuild livekit, but rather use the precompiled project binaries. As per BBB convention, this package provides an immutable default configuration file which gets merged with a user-modifiable file in /etc/bigbluebutton.
12 lines
285 B
Nginx Configuration File
12 lines
285 B
Nginx Configuration File
location /livekit/ {
|
|
proxy_pass http://127.0.0.1:7880/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
proxy_read_timeout 60s;
|
|
proxy_send_timeout 60s;
|
|
client_body_timeout 60s;
|
|
send_timeout 60s;
|
|
}
|