mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-23 22:47:57 +01:00
48 lines
1.7 KiB
Properties
Executable File
48 lines
1.7 KiB
Properties
Executable File
##################################################################################
|
|
# Database Configuration
|
|
##################################################################################
|
|
|
|
# MySQL 5.X configuration properties
|
|
#database.url=jdbc:mysql://localhost/wisemapping
|
|
#database.driver=com.mysql.jdbc.Driver
|
|
#database.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
|
|
#database.username=wisemapping
|
|
#database.password=password
|
|
|
|
# HSQL Configuration properties
|
|
database.url=jdbc:hsqldb:file:target/db/wisemapping
|
|
database.driver=org.hsqldb.jdbc.JDBCDriver
|
|
database.hibernate.dialect=org.hibernate.dialect.HSQLDialect
|
|
database.username=sa
|
|
database.password=
|
|
|
|
|
|
##################################################################################
|
|
# Mail configuration. Must be configured to enable user registration confirmation.
|
|
##################################################################################
|
|
|
|
# SSL configuration
|
|
# mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
|
|
mail.smtp.socketFactory.class=javax.net.DefaultSocketFactory
|
|
mail.smtp.socketFactory.port=25
|
|
|
|
mail.smtp.auth = false
|
|
mail.host=localhost
|
|
mail.user=
|
|
mail.password=
|
|
mail.registrationEmail=root@localhost
|
|
mail.siteEmail=root@localhost
|
|
|
|
|
|
##################################################################################
|
|
# Site configuration
|
|
##################################################################################
|
|
|
|
# Enable/Disable user registration confirmation by e-mail. If it's enabled, mail must be configured.
|
|
user.confirm.registration=false
|
|
|
|
# Site administration user. This user will have special permissions for operations such as removing users, set password
|
|
# etc.
|
|
admin.user = admin@wisemapping.org
|
|
|