Skip to content
/ s3-proxy Public

A simple HTTP server that proxies GET requests to S3 compatible backends.

License

Notifications You must be signed in to change notification settings

gufoe/s3-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

S3 Proxy

A simple HTTP server that proxies GET requests to S3 compatible backends.

Usage

Create a toml configuration file with the following content:

# Server Configuration
workers = 1
host = "127.0.0.1"
port = 9234

# S3 Credentials
s3_host = "server.s3.com"
s3_bucket = "bucket-name"
s3_key = "ACCESS_KEY"
s3_secret = "SECRET_KEY"
s3_region = "us-east-1"

Finally run the server:

s3-proxy -c config.toml

And finally access your files like so:

http://127.0.0.1:9234/my-file.png

About

A simple HTTP server that proxies GET requests to S3 compatible backends.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages