-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathconfig.production.json
More file actions
41 lines (41 loc) · 904 Bytes
/
config.production.json
File metadata and controls
41 lines (41 loc) · 904 Bytes
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
38
39
40
41
{
"url": "https://<domain>",
"server": {
"port": 2368,
"host": "0.0.0.0"
},
"database": {
"client": "mysql",
"connection": {
"host": "db",
"user": "root",
"password": "ASTiMpleSTAl",
"database": "ghost",
"charset": "utf8"
}
},
"mail": {
"from": "'MyDomain' <postmaster@mail.mydomain.com>",
"transport": "SMTP",
"options": {
"service": "Mailgun",
"host": "smtp.mailgun.org",
"port": 465,
"secureConnection": true,
"auth": {
"user": "postmaster@mail.mydomain.com",
"pass": "7adsf7f8asd8f6as7asd7f-123sdf8-asdf87fa"
}
}
},
"logging": {
"transports": [
"file",
"stdout"
]
},
"process": "systemd",
"paths": {
"contentPath": "/var/lib/ghost/content"
}
}