Advertisement
Guest User

Traccar.xml

a guest
Jan 17th, 2019
848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.70 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8'?>
  2.  
  3. <!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'>
  4.  
  5. <properties>
  6.  
  7.     <entry key='config.default'>./conf/default.xml</entry>
  8.  
  9.     <!--
  10.  
  11.    This is the main configuration file. All your configuration parameters should be placed in this file.
  12.  
  13.    Default configuration parameters are located in the "default.xml" file. You should not modify it to avoid issues
  14.    with upgrading to a new version. Parameters in the main config file override values in the default file. Do not
  15.    remove "config.default" parameter from this file unless you know what you are doing.
  16.  
  17.    For list of available parameters see following page: https://www.traccar.org/configuration-file/
  18.  
  19.    -->
  20.  
  21.     <entry key='database.driver'>org.h2.Driver</entry>
  22.     <entry key='database.url'>jdbc:h2:./data/database</entry>
  23.     <entry key='database.user'>sa</entry>
  24.     <entry key='database.password'></entry>
  25.  
  26. <!-- Working with SMS for Twilio, Added 16th Jan 2018 at 9:27AM -->
  27.  
  28.     <entry key='notificator.types'>web,mail,sms</entry>
  29. <entry key='notificator.sms.manager.class'>org.traccar.sms.HttpSmsClient</entry>
  30. <entry key='sms.http.url'>https://api.twilio.com/2010-04-01/Accounts/A**************************/Messages.json</entry>
  31. <entry key='sms.http.user'>A***************************</entry>
  32. <entry key='sms.http.password'>c*********************************</entry>
  33. <entry key='sms.http.template'>
  34.     From=%2B17135615254&amp;To={phone}&amp;Body={message}
  35. </entry>
  36.  
  37.  
  38. <!-- Added These Lines on January 12 2019 Because of connection issues to DB
  39. <entry key='database.url'>jdbc:h2:/home/user/Documents/yourDataBaseName/target/database</entry>-->
  40.  
  41.  
  42. </properties>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement