data.yml 1.73 KB
Newer Older
NGPixel's avatar
NGPixel committed
1 2 3 4 5 6 7
# ---------------------------------
# DO NOT EDIT THIS FILE!
# This is reserved for system use!
# ---------------------------------
name: Wiki.js
defaults:
  config:
8
    # File defaults
NGPixel's avatar
NGPixel committed
9
    port: 80
10
    bindIP: 0.0.0.0
11
    db:
12
      type: postgres
13 14 15 16 17
      host: localhost
      port: 5432
      user: wikijs
      pass: wikijsrocks
      db: wiki
18
      storage: ./db.sqlite
19 20 21 22 23
    redis:
      host: localhost
      port: 6379
      db: 0
      password: null
24
    # DB defaults
25 26 27 28 29 30 31 32 33 34 35 36 37
    graphEndpoint: 'https://graph.requarks.io'
    lang:
      code: en
      autoUpdate: true
      namespaces: []
      namespacing: false
    telemetry:
      clientId: ''
      isEnabled: false
    title: Wiki.js
    theming:
      theme: 'default'
      darkMode: false
38
    # System defaults
39
    setup: false
40 41 42
    paths:
      content: ./content
      data: ./data
43 44 45 46 47
    cors:
      credentials: true
      maxAge: 600
      methods: 'GET,POST'
      origin: true
48
localeNamespaces:
49
  - admin
50 51
  - auth
  - common
52
jobs:
53 54 55
  fetchGraphLocale:
    onInit: false
    cron: false
56
    concurrency: 0
57 58 59
  purgeUploads:
    onInit: true
    cron: '*/15 * * * *'
60
    concurrency: 0
61 62 63 64
  renderPage:
    onInit: false
    cron: false
    concurrency: 1
65 66 67
  syncGraphLocales:
    onInit: true
    cron: '0 0 * * *'
68
    concurrency: 0
69 70 71 72
  syncGraphUpdates:
    onInit: true
    cron: '0 0 * * *'
    concurrency: 0
73 74 75 76
  syncStorage:
    onInit: false
    cron: false
    concurrency: 1
77 78 79 80 81 82
groups:
  defaultPermissions:
    - 'manage:pages'
    - 'write:assets'
    - 'read:comments'
    - 'write:comments'
NGPixel's avatar
NGPixel committed
83 84 85 86 87
telemetry:
  BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
  BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
  GA_ID: 'UA-9094100-7'
  GA_REMOTE: 'https://www.google-analytics.com/collect'
88
# ---------------------------------