Skip to content

Commit b9fa95d

Browse files
committed
bump and cleanup
1 parent c753875 commit b9fa95d

File tree

4 files changed

+346
-42
lines changed

4 files changed

+346
-42
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ The available options and help information can be displayed with:
5959
docker run --rm aws-s3-reverse-proxy --help
6060
```
6161

62-
# Build
62+
## Build
6363
All build dependencies and steps are contained in the `Dockerfile`:
6464
```
6565
docker 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

9999
Client 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
107107
projects we are happy to accept cosmetic contributions and small contributions,
108108
in 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
113113
details, 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.

go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module github.com/Kriechi/aws-s3-reverse-proxy
22

33
require (
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

0 commit comments

Comments
 (0)