Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 788 Bytes

File metadata and controls

25 lines (18 loc) · 788 Bytes

TranscoderManager

Build Status Coverage Status

This is the backend REST api for managing BB web broadcast transcoders.

Installation

Custom base path

By default, the application is expected to be served under the root path. If you want it to be served on a different path. Set a custom header, X-Forwarded-Base-Path, with this path (start with leading '/').

Example using Nginx:

location /custom/path/ {
  proxy_pass http://127.0.0.1:9292;
  proxy_set_header X-Forwarded-Base-Path /custom/path;
}