Skip to content

d0x/ladon-s3-server

 
 

Repository files navigation

Build Status

Ladon S3 Server

Build your own S3 Server and keep your data safe!

Installation:

The Ladon S3 Server is built using Java 8 and Maven

mvn package && java -jar ladon-s3-server-boot/target/ladon-s3-server-boot-{version}.jar

Customize:

The core functions of S3 are mapped to a class called S3Repository. All you have to do is provide a bean of this type.

    @Bean
    S3Repository s3Repository() {
        return new YourCustomRepository();
    }

The request base path for the controller is configured with a property:

s3server.baseUrl=/api/s3

For a quick start there is an example for a file system storage added.

public class FSRepository {...}

If you want to use it, you have to specify the root directory where it will store the data. Default is: {user.home}/.s3server

s3server.fsrepo.root=${user.home}/.s3server

For other configuration options have a look at the application.properties

Supported so far is only access via REST API, no ACL, no policies, no torrent ....

To see what you can build with it have a look at the wiki where you can download a full Ladon application.

License

Copyright (C) 2017 Mind Consulting

Free for private use, easy commercial licensing available

About

S3 Java Api Implementation

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%