mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-09 08:52:51 +00:00
Divides 'dist' folder into several assembly specific distribution parts
The 'dist' folder has been renamed to 'distribution' and divided into 2 subfolders: - 'distribution/global' -> included in all assemblies - 'distribution/sql' -> included in SQL assemblies
This commit is contained in:
27
distribution/global/config/properties/database.properties
Normal file
27
distribution/global/config/properties/database.properties
Normal file
@@ -0,0 +1,27 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# JDBCDatabaseService configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
# Parameters in this file are used by JDBCDatabaseService.
|
||||
# If you are not sure on the usage of any parameter, read the "Configuration"
|
||||
# section in wiki article about "JDBCDatabaseService".
|
||||
# https://github.com/l2jserver2/
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This defines the connection URL used by JDBC to connect to the database.
|
||||
# Default: jdbc:mysql://localhost/l2jserver2
|
||||
jdbc.url = jdbc:mysql://localhost/l2jserver2
|
||||
|
||||
# The driver used to connect to the database. Please note that the driver
|
||||
# library must be available in the JVM classpath.
|
||||
# Default: com.mysql.jdbc.Driver in MySQL binary distribution or
|
||||
# org.h2.Driver in H2 binary distribution
|
||||
jdbc.driver = com.mysql.jdbc.Driver
|
||||
|
||||
# The username used to login into the database.
|
||||
# NOTE: Try not use "root" in production servers!
|
||||
# Default: <your database username>
|
||||
jdbc.username = l2j
|
||||
|
||||
# The password used to login into the database.
|
||||
# Default: <your database password>
|
||||
jdbc.password = changeme
|
||||
Reference in New Issue
Block a user