Hi @atripp ,
I'm not very familiar with C# and .NET, but found here that the AmazonS3Config class has a forcePathStyle attribute and a ForcePathStyle method. by default this is false. I think setting this to true should work correctly with Ceph/RGW.
public partial class AmazonS3Config : ClientConfig
{
...
private bool forcePathStyle = false;
...
public bool ForcePathStyle
{
get { return forcePathStyle; }
set { forcePathStyle = value; }
}
...
}
Cheers
Karsten