-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
37 lines (33 loc) · 1.14 KB
/
.env.sample
File metadata and controls
37 lines (33 loc) · 1.14 KB
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
35
36
37
# MinIO Configuration
MINIO_ROOT_USER=admin
MINIO_ROOT_PASSWORD=SuperSecurePassword
MINIO_ENDPOINT=http://minio:9000
MINIO_BUCKET_NAME=my-ghost-bucket
MINIO_ACCESS_KEY=your-access-key
MINIO_SECRET_KEY=your-secret-key
MINIO_REGION=eu-west-1
MINIO_USE_SSL=false
# MySQL Configuration
MYSQL_HOST=db
MYSQL_ROOT_PASSWORD=R00tP@ssw0rd
MYSQL_DATABASE=ghost
# Ghost Configuration
url=http://localhost:8069
database__client=mysql
database__connection__host=${MYSQL_HOST}
database__connection__user=root
database__connection__password=${MYSQL_ROOT_PASSWORD}
database__connection__database=${MYSQL_DATABASE}
imageOptimization__resize=false
imageOptimization__srcsets=false
storage__active=object-store
storage__files__adapter=object-store
storage__media__adapter=object-store
storage__objectStore__endpoint=${MINIO_ENDPOINT}
storage__objectStore__accessKey=${MINIO_ACCESS_KEY}
storage__objectStore__secretKey=${MINIO_SECRET_KEY}
storage__objectStore__bucket=${MINIO_BUCKET_NAME}
storage__objectStore__region=${MINIO_REGION}
storage__objectStore__useSSL=${MINIO_USE_SSL}
storage__objectStore__storagePath=content/media/
storage__objectStore__staticFileURLPrefix=content/media/