New Tiers availableMore feature, Up to 10 Million AI-Tokens for free

Read blog post
In jedem Account enthalten

RAKU — S3-kompatibler Storage

Jeder Fairu-Account enthält RAKU, unser S3-kompatibles Storage-Gateway. Nutze deine Lieblingstools wie AWS CLI, Transmit oder Cyberduck, um deine Assets direkt zu verwalten — mit der vollen Power von Fairus Transformations-Engine.

raku.fairu.app — S3$ aws s3 ls s3://raku/ images/ documents/$ aws s3 cp img.jpg s3://raku/upload: img.jpg → s3://raku/>AWS CLITransmit🦆CyberduckLaravelNode.jsAny S3S3 Compatible · Any Tool Works
S3-Compatible

S3-Kompatibilität, Fairu-Power

Cloud Storage S3 Compatible Icon
Volle S3-API-Kompatibilität
RAKU implementiert die AWS S3 API, sodass jedes Tool oder SDK, das mit S3 funktioniert, auch mit Fairu funktioniert. Keine Code-Änderungen nötig.
Beliebte Tools unterstützt
Verbinde via AWS CLI, Transmit, Cyberduck, S3 Browser oder jede S3-kompatible Anwendung. Funktioniert sofort.
Integrierter File-Proxy
Greife auf deine Dateien über RAKU mit allen Fairu-Transformationsparametern zu. Skaliere, schneide und optimiere on-the-fly via S3.
Einfache Zugangsverwaltung
Generiere Access Key und Secret Key Paare direkt im Fairu Dashboard. Verwalte Berechtigungen und widerrufe Zugriff jederzeit.
Lock Network Streamline Icon: https://streamlinehq.com
Multi-Language SDKs
Nutze unsere offiziellen SDKs für PHP/Laravel, TypeScript und Dart — oder jedes AWS SDK mit S3-Unterstützung.
Sichere Authentifizierung
Branchenstandard Access Key + Secret Key Authentifizierung. Jeder Credential kann eigene Berechtigungen haben und sofort widerrufen werden.
RAKU S3-Compatible Storage
Kompatibel mit

Connect Your Favorite Tools

RAKU works with any S3-compatible application out of the box.

AWS CLI

Use familiar AWS commands to manage your files

Transmit

Premium macOS file transfer with full S3 support

Cyberduck

Free, open-source cloud storage browser

S3 Browser

Windows client for S3-compatible storage

Lock Network Streamline Icon: https://streamlinehq.com

Laravel / PHP

Native S3 filesystem driver support

Jedes S3-kompatible Tool oder SDK

Works with any tool supporting S3 API

In 3 Schritten startklar

Verbinde deine Tools mit Fairu in Minuten über unseren S3-kompatiblen Endpoint.

1

Zugangsdaten erstellen

Generiere deinen Access Key und Secret Key im Fairu Dashboard unter Einstellungen → RAKU.

2

Tool konfigurieren

Füge deine Zugangsdaten zu AWS CLI, Transmit, Cyberduck oder jedem S3-kompatiblen Tool hinzu.

Konfiguriere deine AWS CLI mit deinen RAKU-Zugangsdaten
aws configure --profile fairu
# Access Key ID: <your-key>
# Secret Access Key: <your-secret>
# Region: eu-central-1
3

Loslegen

Liste, lade hoch, lade herunter und synchronisiere deine Dateien mit vertrauten S3-Befehlen.

Lock Network Streamline Icon: https://streamlinehq.com Code Examples

Funktioniert mit deinen Lieblingstools

Nutze Standard-S3-Befehle und SDKs, die du bereits kennst. Keine proprietären APIs zu lernen.

AWS CLI Befehlebash
# List all buckets
aws s3 ls --profile fairu --endpoint-url https://raku.fairu.app

# List files in a bucket
aws s3 ls s3://your-tenant-id --profile fairu --endpoint-url https://raku.fairu.app

# Upload a file
aws s3 cp image.jpg s3://your-tenant-id/folder/ --profile fairu --endpoint-url https://raku.fairu.app

# Download a file
aws s3 cp s3://your-tenant-id/folder/image.jpg ./ --profile fairu --endpoint-url https://raku.fairu.app

# Sync a directory
aws s3 sync ./local s3://your-tenant-id/remote --profile fairu --endpoint-url https://raku.fairu.app
Laravel-Integrationphp
// config/filesystems.php
'disks' => [
    'fairu' => [
        'driver' => 's3',
        'key' => env('FAIRU_RAKU_KEY'),
        'secret' => env('FAIRU_RAKU_SECRET'),
        'region' => 'eu-central-1',
        'bucket' => env('FAIRU_TENANT_ID'),
        'endpoint' => 'https://raku.fairu.app',
        'use_path_style_endpoint' => true,
    ],
],

// Usage in your application
Storage::disk('fairu')->put('folder/file.jpg', $contents);
Storage::disk('fairu')->get('folder/file.jpg');
Storage::disk('fairu')->url('folder/file.jpg');

Bereit, deine Tools zu verbinden?

Erstelle deine RAKU-Zugangsdaten im Dashboard und nutze S3-kompatible Tools in Minuten.