File tree 4 files changed +346
-42
lines changed
4 files changed +346
-42
lines changed Original file line number Diff line number Diff line change 11
11
- name : Set up Go
12
12
uses : actions/setup-go@v2
13
13
with :
14
- go-version : 1.14
14
+ go-version : 1.15
15
15
16
16
- name : Check out source code
17
17
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:
59
59
docker run --rm aws-s3-reverse-proxy --help
60
60
```
61
61
62
- # Build
62
+ ## Build
63
63
All build dependencies and steps are contained in the ` Dockerfile ` :
64
64
```
65
65
docker build -t aws-s3-reverse-proxy .
66
66
```
67
67
68
- # Run
68
+ ## Run
69
69
70
- ## Server Examples
70
+ ### Server Examples
71
71
```
72
72
$ docker run --rm -ti \
73
73
-p 8099 \
@@ -94,25 +94,25 @@ Or just run the binary the old-fashioned way:
94
94
./aws-s3-reverse-proxy --help
95
95
```
96
96
97
- ## Client Examples
97
+ ### Client Examples
98
98
99
99
Client with the [ official awscli] ( https://aws.amazon.com/cli/ ) :
100
100
```
101
101
$ aws s3 --endpoint-url http://my.host.example.com:8099 ls s3://my-bucket/
102
102
```
103
103
104
- # Contributing
104
+ ## Contributing
105
105
106
106
` aws-s3-reverse-proxy ` welcomes contributions from anyone! Unlike many other
107
107
projects we are happy to accept cosmetic contributions and small contributions,
108
108
in addition to large feature requests and changes.
109
109
110
- # License
110
+ ## License
111
111
112
112
` aws-s3-reverse-proxy ` is made available under the MIT License. For more
113
113
details, see the ` LICENSE ` file in the repository.
114
114
115
- # Authors
115
+ ## Authors
116
116
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 1
1
module github.com/Kriechi/aws-s3-reverse-proxy
2
2
3
3
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
8
8
gopkg.in/alecthomas/kingpin.v2 v2.2.6
9
9
)
10
10
11
- go 1.14
11
+ go 1.15
You can’t perform that action at this time.
0 commit comments