aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/CMNext.sample.json
blob: 8af8e8da212259b085e5847f1b1ebd38717ab411 (plain)
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
{
  //Enables debug logging
  "debug": false,

  "post_endpoint": {
    "path": "/blog/posts"
  },

  "channel_endpoint": {
    "path": "/blog/channels"
  },

  "content_endpoint": {
    "path": "/blog/content",
    "max_content_length": 50000000
  },

  "blog_channels": {
    //The index file for storing channel configuration
    "index_file_name": "blogs/channels.json"
  },

  "storage": {
    //The custom storage assembly to use
    "custom_storage_assembly": null,

    "type": "s3", //s3 | ftp

    //s3 config
    "server_address": "",
    "access_key": "",
    "bucket": "",
    "use_ssl": false,
    "Region": null
  },

  "secrets": {
    //Set the vault path to the s3 secret
    "storage_secret": "",
  }
}