pckg_capture_redirect

The `pckg_capture_redirect` directive captures and manages redirection of request packages in the Kaltura Media Framework.

Syntaxpckg_capture_redirect on|off;
Defaultoff
Contexthttp, server, location
Arguments1

Description

The pckg_capture_redirect directive is designed for use in the Kaltura Media Framework, specifically within its Kaltura Common NGINX Module. This directive facilitates the capturing of redirect information, which is crucial for handling media requests within the framework's architecture. When utilized in an http, server, or location context, it allows the user to define how redirects are treated when processing media-related requests.

The directive accepts a single argument that specifies the behavior of the redirection capture. This allows administrators to dictate whether redirects should be logged, modified, or otherwise processed in a particular manner, thus improving the management of media package flows and enhancing user experiences by minimizing unnecessary redirects. The capture of this information enables more robust diagnostics and performance optimizations, aligning with the performance-oriented design of the Kaltura Media Framework. Careful consideration of how this directive is configured can lead to better resource handling and overall system reliability.

Given that the Kaltura module is optimized for live media streaming and robust API interactions, properly managing redirections ensures that requests are efficiently processed, providing seamless media experiences for end users. The integration of this functionality into NGINX expands the server's capability in handling sophisticated media routing tasks effectively.

Config Example

location /media {
    pckg_capture_redirect on;
}

Ensure the directive is used in the correct context (http, server, location).

Double check the argument passed to avoid conflicts with other directives.

If not enabled, redirections may not be managed as desired, potentially leading to broken media links.

← Back to all directives