MySQL realated stuff documented.
[mediadatabase.git] / sample.conf
blob6800ef313855625d47d847ffca8a47afdd8afc28
2 # Sample configuration file for mediadatabase
3 # Copy this file to ~/.mediadatabase and edit it to match your setup.
6 ##################
8 # The command to mount
9 mount = "/bin/mount /cdrom"
11 # The command to unmount
12 unmount = "/bin/umount /cdrom"
14 # The directory where media filesystem will be mounted after executing mount command
15 mountdir = "/cdrom"
17 # Which backend to use
18 backend = "SQLite"
19 #backend = "MySQL"
21 ##################
23 # MySQL backend specific setup
24 [MySQL]
26 # The host where MySQL server runs
27 host = "mysqlserver.domain.org"
29 # The user to access mediadatabase database on MySQL server
30 user = "mediadatabase"
32 # The password for user used to access mediadatabase database on MySQL server
33 pass = "password_for_user_mediadatabase"
35 # The name of mediadatabase database on MySQL server
36 db = "mediadatabase"
38 ##################
40 # SQLite backend specific setup
41 [SQLite]
43 # The file where SQLite database is stored
44 dbfile = "/home/nedko/.mdb.sqlite"
46 ##################
48 # Console frontend specific setup
49 [cui]
51 ##################