# HLS MIME types.
# Nginx's bundled mime.types has no entry for .m3u8 and maps .ts to
# video/mp2t only on newer builds, so declare both explicitly.
#
# Include inside the http { } block, after the default mime.types:
#     include /etc/nginx/conf.d/hls-mime.conf;

types {
    application/vnd.apple.mpegurl   m3u8;
    application/x-mpegURL           m3u;
    video/mp2t                      ts;
    video/iso.segment               m4s;
}
