File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 - name : Set up Go
1212 uses : actions/setup-go@v2
1313 with :
14- go-version : 1.14
14+ go-version : 1.15
1515
1616 - name : Check out source code
1717 uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -59,15 +59,15 @@ The available options and help information can be displayed with:
5959docker run --rm aws-s3-reverse-proxy --help
6060```
6161
62- # Build
62+ ## Build
6363All build dependencies and steps are contained in the ` Dockerfile ` :
6464```
6565docker build -t aws-s3-reverse-proxy .
6666```
6767
68- # Run
68+ ## Run
6969
70- ## Server Examples
70+ ### Server Examples
7171```
7272$ docker run --rm -ti \
7373 -p 8099 \
@@ -94,25 +94,25 @@ Or just run the binary the old-fashioned way:
9494./aws-s3-reverse-proxy --help
9595```
9696
97- ## Client Examples
97+ ### Client Examples
9898
9999Client with the [ official awscli] ( https://aws.amazon.com/cli/ ) :
100100```
101101$ aws s3 --endpoint-url http://my.host.example.com:8099 ls s3://my-bucket/
102102```
103103
104- # Contributing
104+ ## Contributing
105105
106106` aws-s3-reverse-proxy ` welcomes contributions from anyone! Unlike many other
107107projects we are happy to accept cosmetic contributions and small contributions,
108108in addition to large feature requests and changes.
109109
110- # License
110+ ## License
111111
112112` aws-s3-reverse-proxy ` is made available under the MIT License. For more
113113details, see the ` LICENSE ` file in the repository.
114114
115- # Authors
115+ ## Authors
116116
117- `` aws-s3-reverse-proxy ` ` was created by Thomas Kriechbaumer, and is maintained
118- by the community.
117+ ` aws-s3-reverse-proxy ` was created by Thomas Kriechbaumer, and is maintained
118+ by the community.
Original file line number Diff line number Diff line change 11module github.com/Kriechi/aws-s3-reverse-proxy
22
33require (
4- github.com/aws/aws-sdk-go v1.31.4
5- github.com/prometheus/client_golang v1.6 .0
6- github.com/sirupsen/logrus v1.6 .0
7- github.com/stretchr/testify v1.5 .1
4+ github.com/aws/aws-sdk-go v1.36.23
5+ github.com/prometheus/client_golang v1.9 .0
6+ github.com/sirupsen/logrus v1.7 .0
7+ github.com/stretchr/testify v1.6 .1
88 gopkg.in/alecthomas/kingpin.v2 v2.2.6
99)
1010
11- go 1.14
11+ go 1.15
You can’t perform that action at this time.
0 commit comments