Skip to content
Snippets Groups Projects
Commit b0300c0d authored by Welter, Felix's avatar Welter, Felix
Browse files

Add example nginx config of bbb server

parent 7943cc64
No related branches found
No related tags found
No related merge requests found
location /sr/ {
proxy_pass http://127.0.0.1:8080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_buffering off;
}
location /msg_broker/ {
proxy_pass http://127.0.0.1:3022/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location /relevant-terms/ {
proxy_pass http://127.0.0.1:6060/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment