Hello,
I have a .NET6 application running on AWS Linux AMI 2
https://docs.servicestack.net/deploy-netcore-to-amazon-linux-2-ami
If I publish a video (over 5M) as a static file, it is working
https://mds.mojomotorcycles.com.au/Content/images/xxx.mp4
I have 3S buckets (not set public), I use this code in the AppHost.Configure
var s3Client = new AmazonS3Client();
this.InsertVirtualFileSources.Add(new S3VirtualFiles(s3Client, Constants.StorageAccountName));
All good and it is working for many files: PDF, Images etc (even large like 60Mb)
Now I have an issue with Videos ONLY (.mp4 or .mov) when above around 5Mb
The above video that works as a static file published as content, is not working via the Virtual File System as:
https://mds.mojomotorcycles.com.au/transaction-videos/xxx.mp4
Other videos < 5M like this one about 3M are working
https://mds.mojomotorcycles.com.au/transaction-videos/xxx.mp4
So that seems to have to do with the Virtual File System, for only video above 5M. Does that ring a bell for you?
Thank you
Thierry