Skip to content

Instantly share code, notes, and snippets.

@QROkes
Last active September 29, 2018 09:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QROkes/8b4741e889c1abc8614cee2928d7e096 to your computer and use it in GitHub Desktop.
Save QROkes/8b4741e889c1abc8614cee2928d7e096 to your computer and use it in GitHub Desktop.
Traccar GPS Configuration file
<?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&amp;allowMultiQueries=true&amp;autoReconnect=true&amp;useUnicode=yes&amp;characterEncoding=UTF-8&amp;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'>mail@domain.com</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