Add IPData, Windows support, bugfixes (#2)
* Add IPData, Windows support, bugfixes Changes: - Added IPData: mutes and votes are now tracked per-IP instead of per-user. - Windows support: QMP over TCP can now be enabled in the config. - Vote cooldown can now be specified in the config. - Fixed bugs: "Username is already taken" message appearing when it shouldn't * Remove vote from closed connections --------- Co-authored-by: Elijah R <62162399+elijahr2411@users.noreply.github.com>
This commit is contained in:
@@ -11,6 +11,10 @@ proxyAllowedIps = ["127.0.0.1"]
|
||||
qemuArgs = "qemu-system-x86_64"
|
||||
vncPort = 5900
|
||||
snapshots = true
|
||||
# Uncomment qmpHost and qmpPort if you're using Windows.
|
||||
#qmpHost = "127.0.0.1"
|
||||
#qmpPort = "5800"
|
||||
# Comment out qmpSockDir if you're using Windows.
|
||||
qmpSockDir = "/tmp/"
|
||||
|
||||
[collabvm]
|
||||
@@ -31,6 +35,8 @@ tempMuteTime = 30
|
||||
turnTime = 20
|
||||
# How long a reset vote lasts, in seconds
|
||||
voteTime = 100
|
||||
# How long until another vote can be started, in seconds
|
||||
voteCooldown = 180
|
||||
# SHA256 sum of the admin and mod passwords. This can be generated with the following command:
|
||||
# printf "<password>" | sha256sum -
|
||||
# Example hash is hunter2 and hunter3
|
||||
|
||||
Reference in New Issue
Block a user