File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ access_key_id = "minio"
1313secret_access_key = " aichudiKohr6aithi4ahh3aeng2eL7xo"
1414region = " us-east-1"
1515log_bucket = " vicky-logs"
16+ force_path_style = false
1617
1718[default .oidc_config ]
1819well_known_uri = " "
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ pub struct S3Config {
1212 secret_access_key : String ,
1313 pub region : String ,
1414 pub log_bucket : String ,
15+ pub force_path_style : bool ,
1516}
1617
1718#[ derive( Deserialize ) ]
@@ -69,6 +70,7 @@ impl S3Config {
6970
7071 aws_sdk_s3:: Config :: builder ( )
7172 . behavior_version ( BehaviorVersion :: v2025_08_07 ( ) )
73+ . force_path_style ( self . force_path_style )
7274 . endpoint_url ( & self . endpoint )
7375 . credentials_provider ( self . credentials ( ) )
7476 . region ( Region :: new ( self . region . clone ( ) ) )
You can’t perform that action at this time.
0 commit comments