root/tags/0.1/config/earth-webapp.yml

Revision 920, 2.6 kB (checked in by julians, 2 years ago)

More information and improved layout in administration view; use FQDN instead of host name for name column in servers table; better routing for administration view

Line 
1 # Any parameters here affect the Earth web application
2
3 # Configuration for doing user and group name lookup from uid and gid
4 # By default (with ldap_server_name below commented out) ldap lookup is disabled
5 # To enable LDAP, uncomment it.
6 #ldap_server_name: 'ldap.syd.rsp.com.au'
7 ldap_server_port: 389
8 ldap_user_lookup:
9   base: "ou=people, dc=rsp, dc=com, dc=au"
10   id_field: "uidNumber"
11   name_field: "uid"
12 ldap_cache_time: 1.days
13
14 #
15 # A daemon is considered dead if he didn't emit a heartbeat for this period of time
16 # after he was expected to.  This period should account for any latency that might
17 # be caused by database load etc.
18 #
19 heartbeat_grace_period: 10.seconds
20
21 # ----- Graph Configuration -----
22
23 # Number of sub-directory levels shown in the graph. 1 means only the
24 # immediate children of the current directory are shown, 2 means the
25 # grandchildren of the current directory are shown as well, etc.
26 # Note that the more levels are shown, the slower rendering will be.
27 graph_depth: 5
28
29 # The minimum angle for a segment to be displayed, in
30 # degrees. Segments that occupy less than this angle will be merged
31 # together into a segment representing multiple files or multiple
32 # directories.
33 graph_min_angle: 5.0
34
35 # How to deal with segments that even after merging are still below graph_min_angle.
36 #
37 # This can be one of "drop", "keep" or "empty"
38 #
39 # "drop" - remove the segments from display and grow all other
40 # segments on that level to fill the resulting gap. This mode will
41 # lead to small inaccuracies but will look visually pleasing.
42 #
43 # "keep" - small segments will be kept. This is the most precise
44 # setting, but will lead to tiny segments which look visually
45 # unpleasing and are not very helpful since it can be very hard to get
46 # their tooltip displayed.
47 #
48 # "empty" - like keep, but the segments are not shown. This is less
49 # precise than "keep" and looks equally ugley.
50
51 graph_remainder_mode: drop
52
53 # Graph coloring mode - one of :rainbow or :filetype.
54 #
55 # :rainbow - each segment color will use a hue corresponding to the center angle of the segment.
56 # This looks pretty, but has the disadvantage that colors jump when navigating between levels.
57 #
58 # :by-type - each segment color will use a hue corresponding to the type of the segment, configured
59 # below.
60 #
61 graph_coloring_mode: rainbow
62
63 #
64 # Segment type hues and saturations, used only in graph_coloring_mode: by-type
65 #
66 graph_single_file_hue: 200
67 graph_single_file_saturation: 100
68
69 graph_single_directory_hue: 200
70 graph_single_directory_saturation: 100
71
72 graph_multiple_file_hue: 200
73 graph_multiple_file_saturation: 100
74
75 graph_multiple_directory_hue: 200
76 graph_multiple_directory_saturation: 100
Note: See TracBrowser for help on using the browser.