Connect Opndrive to Wasabi
Wasabi is S3-compatible, so Opndrive connects with a normal access key pair. The endpoint is derived from the region you pick, and the region must match the one your bucket was created in.
Step 1, complete
Provider
SelectedWasabiFlat-rate hot storageChange
2, current step
Add credentials
3, not started
Open your drive
Setting up WasabiOptional
1. Allow this site in CORS
Log into the Wasabi console, choose your bucket, then Policies, then CORS Configuration.
2. Paste this policy
{
"AllowedMethods": [
"GET",
"PUT",
"POST",
"DELETE",
"HEAD"
],
"AllowedOrigins": [
"https://your-domain.com"
],
"AllowedHeaders": [
"*"
],
"ExposeHeaders": [
"ETag"
],
"MaxAgeSeconds": 3000
}Replace https://your-domain.com with the address you use Opndrive from.
3. Permissions the key needs
- GetObject
- PutObject
- DeleteObject
- ListBucket
Worth knowing
Wasabi regions are not interchangeable with AWS ones. Using the wrong region gives an authorization error rather than a helpful redirect.