-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.xml
More file actions
63 lines (58 loc) · 2.25 KB
/
config.xml
File metadata and controls
63 lines (58 loc) · 2.25 KB
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
<?xml version="1.0"?>
<!-- The wiki settings are documented here.
See the default config.xml for documentation on HTTP server settings.
-->
<http-server>
<listener address="0.0.0.0" port="8000"/>
<server
use-default-virtual-host="yes"
debug="no"
/>
<dsp reparse-templates="yes" />
<!-- TODO: site-name and site-url should be in an <atom> or <feed> element. -->
<!--
site-name
Sent as the title of Atom feeds.
site-url
Sent as the URI of Atom feeds.
url-prefix (TODO: should delete this and just use site-url)
Prefix for all wiki URLs. Defaults to "/wiki". May be "".
static-directory
Directory where the wiki should look for its static files.
This should point to the wiki project directory; the one
containing the www, dylan, and dsp subdirectories.
git-main-repository-root (required)
Full path of main git repository. This is where wiki page
and group data is stored.
git-user-repository-root (required)
Full path of user git repository. This is where user data
is stored. You may want to keep this data secure.
git-executable (optional)
Full path of git executable (default: "git").
python-executable (optional)
Path to the Python executable for running rst2html. If
this isn't specified then the rst2html setting will be
executed directly.
rst2html
Location of the rst2html executable or rst2html.py. The
latter requires the python-executable setting to be specified.
-->
<wiki site-name="Wiki"
site-url="http://localhost"
url-prefix="/wiki"
wiki-root=".../dylan/src/wiki"
git-main-repository-root=".../wiki/main-data"
git-user-repository-root=".../wiki/user-data"
git-executable="/usr/bin/git"
python-executable="/usr/bin/python"
rst2html="/usr/bin/rst2html"
>
<!-- Note that the administrator's email address will be the one
from which account emails are sent, so it runs a high spam risk.
-->
<administrator password="xxxx"
email="...@opendylan.org"/>
<authentication realm="dylan-wiki"/>
<mail host="localhost"/>
</wiki>
</http-server>