diff --git a/docs/reference/s3-compatibility.mdx b/docs/reference/s3-compatibility.mdx index 7245bb9..c43e032 100644 --- a/docs/reference/s3-compatibility.mdx +++ b/docs/reference/s3-compatibility.mdx @@ -11,8 +11,6 @@ Fil One provides an S3-compatible API. If your application works with AWS S3, it https://eu-west-1.s3.fil.one ``` - - All requests use HTTPS. HTTP connections are rejected. ## Authentication diff --git a/vercel.json b/vercel.json index de1d46d..bb74577 100644 --- a/vercel.json +++ b/vercel.json @@ -2,5 +2,12 @@ "buildCommand": "npm run build", "outputDirectory": "build", "installCommand": "npm install", - "framework": "docusaurus-2" + "framework": "docusaurus-2", + "redirects": [ + { "source": "/api-reference", "destination": "/reference/overview", "permanent": true }, + { "source": "/security", "destination": "/security/authentication", "permanent": true }, + { "source": "/billing", "destination": "/billing/trial", "permanent": true }, + { "source": "/sdks", "destination": "/sdk/overview", "permanent": true }, + { "source": "/sdks/:path*", "destination": "/sdk/:path*", "permanent": true } + ] }