forked from brunojppb/turbo-cache-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (21 loc) · 740 Bytes
/
.env.example
File metadata and controls
22 lines (21 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
S3_ACCESS_KEY="rustfsadmin"
S3_SECRET_KEY="rustfsadmin"
S3_ENDPOINT="http://localhost:9000"
####################################
# Optional but with defaults
####################################
# Bucket name defaults to "turbo"
S3_BUCKET_NAME="YOUR_BUCKET_NAME"
# Region defaults to "eu-central-1"
S3_REGION="eu-central-1"
# Defaults to "false"
S3_USE_PATH_STYLE=true
# Defaults to 8000
PORT=8000
# Path for writing logs to a file
LOGS_DIRECTORY="/tmp/decay_logs"
# Optional: enables authentication when set. Requests must then include
# an `Authorization: Bearer <TURBO_TOKEN>` header. When unset, the auth
# middleware is bypassed entirely. See the "Authentication" section in
# the README for details.
TURBO_TOKEN="secret-turbo-token"