You might want to allow embedded video based on the main destination that you access if, for example, audio/video is blocked in policy but you want to allow all videos on the specific URL. Copy and paste one of the following policies to the local policy file.
Note: The following examples of policy should work for HTTP traffic. For HTTPS traffic, you must enable SSL interception.
Policy sample: Allow all audio/video with the specified categories
<Proxy> request.header.Referer.url.category=(Business/Economy, "Financial Services", Government/Legal)
url.category="Audio/Video Clips" Allow
Additional Notes
Policy sample: Allow specific video types
<Proxy>
condition=MIME-test request.header.Referer.url.category="News/Media" Allow
define condition MIME-test
response.header.Content-Type="^video/x-sgi-movie( | )*($|;)"
response.header.Content-Type="^video/quicktime( | )*($|;)"
response.header.Content-Type="^video/vnd.vivo( | )*($|;)"
response.header.Content-Type="^video/x-flv( | )*($|;)"
response.header.Content-Type="^video/x-ivf( | )*($|;)"
response.header.Content-Type="^video/x-la-asf( | )*($|;)"
response.header.Content-Type="^video/x-ms-asf( | )*($|;)"
response.header.Content-Type="^video/x-ms-wm( | )*($|;)"
response.header.Content-Type="^video/x-ms-wmv( | )*($|;)"
response.header.Content-Type="^video/x-ms-wmx( | )*($|;)"
response.header.Content-Type="^video/x-ms-wvx( | )*($|;)"
response.header.Content-Type="^video/x-msvideo( | )*($|;)"
response.header.Content-Type="^video/mpeg( | )*($|;)"
response.header.Content-Type="^audio/x-pn-realaudio-plugin( | )*($|;)"
response.header.Content-Type="^audio/mp1( | )*($|;)"
response.header.Content-Type="^audio/mpeg( | )*($|;)"
response.header.Content-Type="^audio/wav( | )*($|;)"
response.header.Content-Type="^audio/x-aiff( | )*($|;)"
response.header.Content-Type="^audio/x-mpegurl( | )*($|;)"
response.header.Content-Type="^audio/x-ms-wax( | )*($|;)"
response.header.Content-Type="^audio/x-ms-wma( | )*($|;)"
response.header.Content-Type="^audio/x-pn-realaudio( | )*($|;)"
response.header.Content-Type="^audio/mid( | )*($|;)"
end
Additional Notes