aboutsummaryrefslogtreecommitdiff
path: root/config.yaml
blob: ba455abb58dc877354ef3e4bf2e647f143669555 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# The title displayed at the top of the dashboard.
title: DashLab

server:
  # The address and port to start listening on.
  address: 0.0.0.0
  port: 8080

# An announcement to show to all visitors. Set to an empty string to disable.
announcement: |
  The admin has yet to write their own configuration file!

defaults:
  # Set the default icon set and name to fall back to if no icon could be found
  # automatically.
  icon-set: "simple-icons"
  icon-name: "simpleicons"

# Configure how to check for authentication.
auth:
  # The name of the HTTP header to read the username from.
  user-header: "X-Authentik-Username"

  # The name of the HTTP header to read group memberships from.
  groups-header: "X-Authentik-Groups"

  # The string to use as seperator for the group membership entries from the
  # groups-header.
  separator: "|"

# Configure the style of the dashboard.
style:
  fonts:
    primary: "sans-serif"
    header: "sans-serif"
    footer: "sans-serif"
    tags: "sans-serif"
  colors:
    text-primary: "#f7f7f7"
    text-secondary: "#aaaaaa"
    text-link: "#0097fc"
    text-announcement: "#000000"
    background-primary: "#333333"
    background-secondary: "#555555"
    background-announcement: "#ffff90"
    tags:
      # Specify dedicated background and text colors per tag.
      # TagName:
      #   background: ""
      #   text: ""
  transformations:
    link-brightness-hover: 0.7
    link-brightness-active: 0.3
    icon-filter: "grayscale(1) brightness(0)"
    icon-size: 48px

# Reload the configuration file on every request. This makes performance
# much worse, but allows for quick save-and-inspect changes of your
# configuration file.
# reload-middleware: false

# A list of all different sections. Each section has a heading, optionally a
# description, and 1 or more apps to show.
sections:
- title: Example
  description: This section exists solely as an example
  apps:
  - title: DashLab
    description: A link to itself
    url: /
    # An optional icon to show for this application. If not set, the shipped
    # icon sets will be checked for an icon that matches the title of this
    # application. The url attribute can be used to simply link to an icon
    # elsewhere on the Internet. Otherwise, you can use the set attribute to
    # select the icon set to pick from, and name to specify the icon filename.
    # icon:
    #   url: ""
    #   set: ""
    #   name: ""
    # A set of tags to show next to the application title.
    # tags:
    # - TagName
    # Specify the groups which should be able to see this application. If left
    # empty, everyone can see it.
    # groups:
    # - admin
    # - moderator