mirror of
https://github.com/GeorgH93/Minepacks.git
synced 2025-01-07 19:28:11 +01:00
Use quotes for all SQL server strings
This should prevent confusion if the password fails to load because it contains a #
This commit is contained in:
parent
1cf93591e0
commit
f86e30bd6a
@ -72,10 +72,10 @@ Database:
|
||||
UUID_Type: auto
|
||||
# Settings only for MySQL
|
||||
SQL:
|
||||
Host: localhost:3306
|
||||
Database: minecraft
|
||||
User: minecraft
|
||||
Password: minecraft
|
||||
Host: "localhost:3306"
|
||||
Database: "minecraft"
|
||||
User: "minecraft"
|
||||
Password: "minecraft"
|
||||
# The max amount of connections to the database the connection pool will open
|
||||
MaxConnections: 2
|
||||
# Sets the max lifetime of the connection in seconds. -1 = Default (30min)
|
||||
|
Loading…
Reference in New Issue
Block a user