aws-s3-proxy

command module
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 14, 2016 License: MIT Imports: 11 Imported by: 0

README

Reverse proxy for AWS S3 w/ basic authentication

circleci status

Description

This is a reverse proxy for AWS S3, which is able to provide basic authentication as well.
You don't need to configure a Bucket for Website Hosting.
(日本語はこちら)

Usage

1. Set environment variables
Environment Variables Description Required
AWS_S3_BUCKET The S3 bucket to be proxied with this app. *
AWS_REGION The AWS region where the S3 bucket exists. *
AWS_ACCESS_KEY_ID AWS access key for API access. or EC2 Instance Role
AWS_SECRET_ACCESS_KEY AWS secret key for API access.
BASIC_AUTH_USER User for basic authentication.
BASIC_AUTH_PASS Password for basic authentication.
APP_PORT The port number to be assigned for listening.
SSL_CERT_PATH TLS: cert.pem file path.
SSL_KEY_PATH TLS: key.pem file path.
ACCESS_LOG Send access logs to /dev/stdout. (default: false)
2. Run the application

docker run -d -p 8080:80 -e AWS_REGION -e AWS_S3_BUCKET pottava/s3-proxy

  • with basic auth:

docker run -d -p 8080:80 -e AWS_REGION -e AWS_S3_BUCKET -e BASIC_AUTH_USER -e BASIC_AUTH_PASS pottava/s3-proxy

  • with TLS:

docker run -d -p 8080:80 -e AWS_REGION -e AWS_S3_BUCKET -e SSL_CERT_PATH -e SSL_KEY_PATH pottava/s3-proxy

  • with docker-compose.yml:
proxy:
  image: pottava/s3-proxy
  ports:
    - 8080:80
  environment:
    - AWS_REGION=ap-northeast-1
    - AWS_ACCESS_KEY_ID
    - AWS_SECRET_ACCESS_KEY
    - AWS_S3_BUCKET
    - BASIC_AUTH_USER=admin
    - BASIC_AUTH_PASS=password
    - ACCESS_LOG=true
  container_name: proxy

Code released under the MIT license.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL