-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.production-cloudinary.json
54 lines (54 loc) · 1.1 KB
/
config.production-cloudinary.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"url": "http://localhost:2368",
"server": {
"port": 2368,
"host": "0.0.0.0"
},
"database": {
"client": "sqlite3",
"debug": false,
"useNullAsDefault": true,
"connection": {
"filename": "/var/lib/ghost/content/data/ghost.db"
}
},
"mail": {
"transport": "Direct"
},
"logging": {
"transports": [
"file",
"stdout"
]
},
"storage": {
"active": "ghost-storage-cloudinary",
"ghost-storage-cloudinary": {
"useDatedFolder": true,
"auth": {
"cloud_name": "YOUR_CLOUD_NAME",
"api_key": "API_KEY",
"api_secret": "API_SECRET"
},
"upload": {
"use_filename": true,
"unique_filename": false,
"overwrite": false,
"folder": "ghost",
"tags": ["ghost"]
},
"fetch": {
"quality": "auto",
"secure": true,
"cdn_subdomain": true
}
}
},
"imageOptimization": {
"resize": false
},
"process": "systemd",
"paths": {
"contentPath": "/var/lib/ghost/content"
}
}