Skip to content

Commit dbbcbb9

Browse files
committed
Improve default sql.conf
1 parent ec5ca24 commit dbbcbb9

File tree

1 file changed

+4
-7
lines changed
  • BlueMapCommon/src/main/resources/de/bluecolored/bluemap/config/storages

1 file changed

+4
-7
lines changed

BlueMapCommon/src/main/resources/de/bluecolored/bluemap/config/storages/sql.conf

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,15 @@
99
storage-type: SQL
1010

1111
# The JDBC-Connection URL that is used to connect to the database.
12-
# The format for this url is usually something like: jdbc:[driver]://[host]:[port]/[database]?user=[user]&password=[password]
12+
# The format for this url is usually something like: jdbc:[driver]://[host]:[port]/[database]
1313
# The exact format of the url is determined by the JDBC-Driver you are using.
14-
# (You might need to URL-encode the user and password if it has special characters)
15-
connection-url: "jdbc:mysql://localhost/bluemap?permitMysqlScheme"
16-
#connection-url: "jdbc:mariadb://localhost/bluemap?user=root"
17-
#connection-url: "jdbc:mysql://localhost:3306/bluemap?user=root&password=password"
14+
connection-url: "jdbc:mysql://localhost:3306/bluemap?permitMysqlScheme"
1815

1916
# You can set any additional (JDBC-Driver-specific) properties here
2017
# (if you have user/password in your connection-url, you don't need them here, and vice versa)
2118
connection-properties: {
22-
#user: "root",
23-
#password: ""
19+
user: "root",
20+
password: ""
2421
}
2522

2623
# The maximum number of connections to the database that are allowed to be open at the same time.

0 commit comments

Comments
 (0)