diff options
author | Nathan Lasseter <nathan.je.lasseter@googlemail.com> | 2011-02-20 16:48:04 +0000 |
---|---|---|
committer | Nathan Lasseter <nathan.je.lasseter@googlemail.com> | 2011-02-20 16:48:04 +0000 |
commit | f89ef9ed36e8185f53c7d5f22f91935e2c4ccaa0 (patch) | |
tree | 88a3bced4fcef9ac3a1260f8761cf241176c59da /res | |
parent | 1873252f1ec11794092dcaedaed477afc0572da7 (diff) |
Uses new config. PLEASE DONT PUSH PASSWORDS IN THE CONFIG\!
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 |