You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting up the project and running locally, accessing the URL http://localhost:8080/golive/index.m3u8 allows the content to be watched as expected. However, when switching the URL to http://localhost:8081/golive/index.m3u8, which routes the request through the edge server (before reaching the origin), 404 errors occur for the transport stream (.ts) files.
Manifest File Behavior: The manifest file (index.m3u8) is correctly served by the edge server, thanks to a specific rule.
Issue: Although the manifest is accessible, it references .ts files that are not being found by the server, resulting in 404 errors for these files.
How to encounter/reproduce bug
Run the project locally
Access the content via http://localhost:8080/golive/index.m3u8 (origin server) – content plays successfully.
Change the URL to http://localhost:8081/golive/index.m3u8 (edge server first) – manifest is served, but 404 errors occur for .ts files.
The text was updated successfully, but these errors were encountered:
Description
When setting up the project and running locally, accessing the URL http://localhost:8080/golive/index.m3u8 allows the content to be watched as expected. However, when switching the URL to http://localhost:8081/golive/index.m3u8, which routes the request through the edge server (before reaching the origin), 404 errors occur for the transport stream (.ts) files.
.ts
files that are not being found by the server, resulting in 404 errors for these files.How to encounter/reproduce bug
http://localhost:8080/golive/index.m3u8
(origin server) – content plays successfully.http://localhost:8081/golive/index.m3u8
(edge server first) – manifest is served, but 404 errors occur for .ts files.The text was updated successfully, but these errors were encountered: