# postgres or sqlite or mysql
backend=sqlite
[postgres]
host=localhost
port=5432
# database admin (must have permissions to create databases and users)
dbadmin=postgres
# disable: SSL connections are never used
# allow: try non-SSL, then SSL
# prefer: try SSL, then non-SSL
# require: connect only with SSL
# default - prefer
ssl=prefer
[mysql]
host=localhost
port=3306
# database admin (must have permissions to create databases and users)
dbadmin=root
# hostmask for which connections will be allowed
# % is a wild card, as usually in MySQL
# wildcards and literal strings can be mixed, e.g.,
# %.example.com allows connections from all
# remote hosts that match *.example.com.
unet=my.organization