aboutsummaryrefslogtreecommitdiff
path: root/ci/config-templates/CMNext.json
blob: ab745786050c5bd9c1c3f718ffb75d34a9cb8378 (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
42
43
44
{
  //Enables debug logging
  "debug": ${DEBUG_PLUGINS},

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

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

  "content_endpoint": {
    "path": "/api/blog/content",
    "max_content_length": ${MAX_CONTENT_LENGTH}
  },

  "blog_channels": {
    //The index file for storing channel configuration
    "index_file_name": "${CHANNEL_INDEX_FILE}"
  },

  //S3 setup with vault secrets
  "disabled s3_config": {
    "server_address": "",
    "access_key": "",
    "bucket": "",
    "use_ssl": true,
    "Region": null
  },

  "disabled ftp_config": {
    "url": "",
    "username": "",
    //Base path within the ftp user's directory
    "base_path": ""
  },

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