-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvanilla.cgi.conf
77 lines (65 loc) · 2.03 KB
/
vanilla.cgi.conf
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
;;
;; synerge vanilla/r configuration
;;
;
; the path where your vanilla installation resides,
; including a trailing slash. use e.g. "/C/vanilla/"
; for C:\vanilla\
;
vanilla-root: "@@vanilla-root-path@@"
;
; this configures which snip is to be considered the "home" snip.
; that means, this snip is displayed
; - as default snip, when no other snip is explicitly requested
; - after actions like login/logout
;
vanilla-start-snip: "start"
;
; the resource dir will contain static files that you may want
; to use in vanilla, like stylesheets, graphics. resource-url
; is used in building urls that reference those files.
;
; resource config is important for those who want to use the
; vanilla-attachments feature, others may neglect it for now.
;
; where you place resource-dir is left up to you, but you should
; make sure that the resources are really reachable via the
; resource-url you specifiy here. you can test that by trying the
; access the file "att.gif" via the url specified below (e.g. if
; you use "/static/" as resource-url, try to access
; http://your.host.name/static/att.gif).
;
resource-dir: join vanilla-root "static/"
resource-url: "/static/"
;
; link generation configuration. this is for advanced users who
; want to affect the way urls are generated by vanilla.
;
vanilla-base-url: ""
; vanilla-get-url
; vanilla-post-url
; vanilla-display-url
; vanilla-edit-url
; vanilla-new-url
; vanilla-store-url
;
; users who want to use multiple vanilla instances under the same
; domain must ensure that each instance uses an unique cookie-prefix.
;
vanilla-cookie-prefix: ""
;
; all configuration options after this point are only for advanced
; users or developers.
;
space-accessor: "chainingspace"
space-params: reduce [
(join vanilla-root "data/space/")
(join vanilla-root "data/space/initial/")
]
userdb-accessor: "simpleuserdb"
userdb-param: join vanilla-root "data/users/"
sessiondb-accessor: "simplesessiondb"
sessiondb-param: join vanilla-root "data/sessions/"
vanilla-session-timeout: 00:02:00
benchmark: off
; vim: set syn=rebol: