diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/conf.xml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/res/conf.xml b/res/conf.xml index 3665cb1..4795e94 100644 --- a/res/conf.xml +++ b/res/conf.xml @@ -1,11 +1,12 @@ <?xml version="1.0" encoding="UTF-8" ?> <!-- - At the moment the database and auth tags do nothing. - Only the first of each tag is read. Proceeding tags are ignored. + Only the first database, and the first auths of each type are used. + Proceeding tags are ignored. + Do not have empty element nodes as this will break things. --> -<config version="1.0" > +<config version="1.2" > <database> <host>4574.co.uk</host> @@ -15,8 +16,13 @@ <auth> <user>xauth</user> - <pass></pass> + <pass>pass</pass> <type>read_only</type> </auth> + <auth> + <user>xwrite</user> + <pass>password</pass> + <type>read_write</type> + </auth> </config>
\ No newline at end of file |