-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.env.sample
34 lines (27 loc) · 882 Bytes
/
.env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
DATABASE_URL=postgresql://user:password@localhost:5432/dbname
SENTRY_DSN=
SECRET_KEY=secret_key # generate a secret key with `openssl rand -base64 32`
HOME_URL=https://example.com/ # optional; if present, the home page will redirect to this URL
LOG_LEVEL=info
LOG_QUERY=false
BEHIND_PROXY=false
PORT=3000
# BIND=localhost
# Setting ALLOW_PRIVATE_ADDRESS to true disables SSRF (Server-Side Request Forgery) protection
# Set to true to test in local network
# Will be replaced by list of allowed IPs once https://github.com/dahlia/fedify/issues/157
# is implemented.
ALLOW_PRIVATE_ADDRESS=false
REMOTE_ACTOR_FETCH_POSTS=10
# File uploads and media storage:
DRIVE_DISK=
STORAGE_URL_BASE=
# If DRIVE_DISK is "fs":
# FS_STORAGE_PATH=
# If DRIVE_DISK is "s3":
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
# S3_REGION=
# S3_ENDPOINT_URL=
# S3_BUCKET=
# S3_FORCE_PATH_STYLE=false