51 lines
1.3 KiB
INI
51 lines
1.3 KiB
INI
;Database configuration
|
|
[database]
|
|
;Only tested with MySQL at the moment
|
|
lib = MySQLdb
|
|
name = smf
|
|
user = smf
|
|
password = secret
|
|
prefix = smf_
|
|
host = 127.0.0.1
|
|
port = 3306
|
|
|
|
;Django configuration
|
|
[django]
|
|
;If true, the authenticator will use Django to handle user authentication instead of the database
|
|
enabled = True
|
|
;The path to the Django project
|
|
project = /home/xdreamist/Developer/Zeroc Ice/CVoipPanel
|
|
;project = /path/to/your/django/project
|
|
;The Django settings module to use
|
|
settings = CVoipPanel.settings
|
|
|
|
;Player configuration
|
|
[user]
|
|
;If you do not already know what it is just leave it as it is
|
|
id_offset = 1000000000
|
|
;If enabled avatars are automatically set as user avatars
|
|
avatar_enable = False
|
|
;Reject users if the authenticator experiences an internal error during authentication
|
|
reject_on_error = True
|
|
|
|
;Ice configuration
|
|
[ice]
|
|
host = 127.0.0.1
|
|
port = 6502
|
|
slice = MumbleServer.ice
|
|
secret = secret
|
|
watchdog = 30
|
|
|
|
;Murmur configuration
|
|
[murmur]
|
|
;List of virtual server IDs, empty = all
|
|
servers =
|
|
|
|
;Logging configuration
|
|
[log]
|
|
; Available loglevels: 10 = DEBUG (default) | 20 = INFO | 30 = WARNING | 40 = ERROR
|
|
level =
|
|
file = CVoipAuth.log
|
|
|
|
[iceraw]
|
|
Ice.ThreadPool.Server.Size = 5 |