We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public AmazonStorageProvider(AmazonProviderOptions options) { _serviceUrl = string.IsNullOrEmpty(options.ServiceUrl) ? DefaultServiceUrl : options.ServiceUrl; _bucket = options.Bucket; _serverSideEncryptionMethod = options.ServerSideEncryptionMethod; _chunkedThreshold = options.ChunkedUploadThreshold; var S3Config = new AmazonS3Config { ServiceURL = _serviceUrl, Timeout = options.Timeout ?? ClientConfig.MaxTimeout, // adding ForcePathStyle = true to compatible with MinIO server ForcePathStyle = !string.IsNullOrEmpty(options.ServiceUrl), }; _s3Client = new AmazonS3Client(ReadAwsCredentials(options), S3Config); }
The text was updated successfully, but these errors were encountered:
+1 for this issue. I propose even to go further. Allow end-user to specify Action<AmazonS3Config> to make custom configuration of AmazonS3Config.
Action<AmazonS3Config>
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: