Last active
September 29, 2018 09:38
-
-
Save QROkes/8b4741e889c1abc8614cee2928d7e096 to your computer and use it in GitHub Desktop.
Traccar GPS Configuration file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'> | |
<properties> | |
<entry key="config.default">./conf/default.xml</entry> | |
<!-- DataBase MariaDB --> | |
<entry key='database.driver'>com.mysql.jdbc.Driver</entry> | |
<entry key='database.url'>jdbc:mysql://[HOST]:3306/[DATABASE]?useSSL=false&allowMultiQueries=true&autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8&sessionVariables=sql_mode=''</entry> | |
<entry key='database.user'>[USER]</entry> | |
<entry key='database.password'>[PASSWORD]</entry> | |
<!-- Mail Service - Amazon SES --> | |
<entry key='mail.smtp.host'>email-smtp.us-east-1.amazonaws.com</entry> | |
<entry key='mail.smtp.port'>25</entry> | |
<entry key='mail.smtp.starttls.enable'>true</entry> | |
<entry key='mail.smtp.ssl.enable'>false</entry> | |
<entry key='mail.smtp.from'>[email protected]</entry> | |
<entry key='mail.smtp.auth'>true</entry> | |
<entry key='mail.smtp.username'>[AccessKeyID]</entry> | |
<entry key='mail.smtp.password'>[SecretAccessKey]</entry> | |
</properties> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment