You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,8 +37,8 @@ The application can be configured with the following environment variables:
37
37
-`IAM_ENDPOINT`: Endpoint for IAM role retrieving (Can be blank for AWS)
38
38
-`SSE_TYPE`: Specified server side encryption (defaults blank) Valid values can be `SSE`, `KMS`, `SSE-C` all others values don't enable the SSE
39
39
-`SSE_KEY`: The key needed for SSE method (only for `KMS` and `SSE-C`)
40
-
-`TIMEOUT`: The read and write timout in seconds (default to `600` - 10 minutes)
41
-
-`ROOT_URL`: A root url prefix if running behind a reverse proxy (defaults to unset)
40
+
-`TIMEOUT`: The read and write timeout in seconds (default to `600` - 10 minutes)
41
+
-`ROOT_URL`: A root URL prefix if running behind a reverse proxy (defaults to unset)
42
42
43
43
### Build and Run Locally
44
44
@@ -60,7 +60,7 @@ The s3manager can be run with a `ROOT_URL` environment variable set that account
60
60
61
61
If the nginx configuration block looks like:
62
62
63
-
```code
63
+
```nginx
64
64
location /teamx/ {
65
65
proxy_pass http://s3manager-teamx:8080/;
66
66
auth_basic "teamx";
@@ -72,9 +72,9 @@ If the nginx configuration block looks like:
72
72
}
73
73
```
74
74
75
-
then the instance behind the `s3manager-teamx` service has `ROOT_URL=teamx` and the instance behind `s3manager-teamy` has `ROOT_URL=teamy`.
75
+
Then the instance behind the `s3manager-teamx` service has `ROOT_URL=teamx` and the instance behind `s3manager-teamy` has `ROOT_URL=teamy`.
76
76
Other nginx settings can be applied to each location.
77
-
The nginx instance can be hosted on some reachable address and reverse proxy to the different s3 accounts.
77
+
The nginx instance can be hosted on some reachable address and reverse proxy to the different S3 accounts.
78
78
79
79
## Development
80
80
@@ -94,7 +94,7 @@ The image is available on [Docker Hub](https://hub.docker.com/r/cloudlena/s3mana
94
94
95
95
### Run Locally for Testing
96
96
97
-
There is an example [docker-compose.yml](https://github.com/cloudlena/s3manager/blob/main/docker-compose.yml) file that spins up a S3 service and the S3 Manager. You can try it by issuing the following command:
97
+
There is an example [docker-compose.yml](https://github.com/cloudlena/s3manager/blob/main/docker-compose.yml) file that spins up an S3 service and the S3 Manager. You can try it by issuing the following command:
0 commit comments