data.yml 1.93 KB
Newer Older
NGPixel's avatar
NGPixel committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# ---------------------------------
# DO NOT EDIT THIS FILE!
# This is reserved for system use!
# ---------------------------------
name: Wiki.js
defaults:
  config:
    title: Wiki
    host: http://localhost
    port: 80
    paths:
      repo: ./repo
      data: ./data
    uploads:
      maxImageFileSize: 3,
      maxOtherFileSize: 100
    lang: en
18
    langRtl: false
NGPixel's avatar
NGPixel committed
19 20
    public: false
    auth:
21
      defaultReadAccess: false
NGPixel's avatar
NGPixel committed
22
      local:
23 24
        enabled: true
      microsoft:
NGPixel's avatar
NGPixel committed
25 26 27 28 29
        enabled: false
      google:
        enabled: false
      facebook:
        enabled: false
30 31 32 33
      github:
        enabled: false
      slack:
        enabled: false
NGPixel's avatar
NGPixel committed
34 35
      ldap:
        enabled: false
36 37
      azure:
        enabled: false
NGPixel's avatar
NGPixel committed
38 39 40 41 42 43 44 45 46 47 48 49
    db: mongodb://localhost/wiki
    sessionSecret: null
    admin: null
    git:
      url: null
      branch: master
      auth:
        type: basic
        username: null
        password: null
        privateKey: null
        sslVerify: true
50 51
      serverEmail: wiki@example.com
      showUserEmail: true
52
    features:
53
      linebreaks: true
54
      mathjax: true
55 56 57 58 59
    externalLogging:
      bugsnap: false
      loggly: false
      papertrail: false
      rollbar: false
60
      sentry: false
61 62 63 64
    theme:
      primary: indigo
      alt: blue-grey
      footer: blue-grey
65
      viewSource: false
66 67 68
      code:
        dark: true
        colorize: true
NGPixel's avatar
NGPixel committed
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
colors:
  - red
  - pink
  - purple
  - deep-purple
  - indigo
  - blue
  - light-blue
  - cyan
  - teal
  - green
  - light-green
  - lime
  - yellow
  - amber
  - orange
  - deep-orange
  - brown
  - grey
  - blue-grey
NGPixel's avatar
NGPixel committed
89 90 91 92
langs:
  -
    id: en
    name: English
93 94
  -
    id: zh
NGPixel's avatar
NGPixel committed
95
    name: Chinese - 中文
96 97 98
  -
    id: nl
    name: Dutch - Nederlands
NGPixel's avatar
NGPixel committed
99 100 101
  -
    id: fr
    name: French - Français
NGPixel's avatar
NGPixel committed
102 103 104
  -
    id: de
    name: German - Deutsch
NGPixel's avatar
NGPixel committed
105 106 107 108 109 110 111 112 113
  -
    id: ko
    name: Korean - 한국어
  -
    id: ru
    name: Russian - Русский
  -
    id: es
    name: Spanish - Español
114
# ---------------------------------