Advertisement
Guest User

trytond.conf

a guest
Mar 10th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. cat ~/gnuhealth/tryton/server/trytond-3.0.2/etc/trytond.conf
  2. #This file is part of Tryton. The COPYRIGHT file at the top level of
  3. #this repository contains the full copyright notices and license terms.
  4. [options]
  5.  
  6. # Activate the json-rpc protocol
  7. jsonrpc = *:8000
  8. #ssl_jsonrpc = False
  9.  
  10. # This is the hostname used when generating tryton URI
  11. #hostname_jsonrpc =
  12.  
  13. # Configure the path of json-rpc data
  14. #jsondata_path = /var/www/localhost/tryton
  15.  
  16. # Activate the xml-rpc protocol
  17. #xmlrpc = *:8069
  18. #ssl_xmlrpc = False
  19.  
  20. # Activate the webdav protocol
  21. #webdav = *:8080
  22. #ssl_webdav = False
  23.  
  24. # This is the hostname used when generating WebDAV URI
  25. #hostname_webdav =
  26.  
  27. # Configure the database type
  28. # allowed values are postgresql, sqlite, mysql
  29. #db_type = postgresql
  30.  
  31. # Configure the database connection
  32. ## Note: Only databases owned by db_user will be displayed in the connection dialog
  33. ## of the Tryton client. db_user must have create permission for new databases
  34. ## to be able to use automatic database creation with the Tryton client.
  35. #db_host = False
  36. #db_port = False
  37. #db_user = False
  38. #db_password = False
  39. #db_minconn = 1
  40. #db_maxconn = 64
  41.  
  42. # Configure the postgresql path for the executable
  43. #pg_path = None
  44.  
  45. # Configure the Tryton server password
  46. #admin_passwd = admin
  47.  
  48. # Configure the path of the files for the pid and the logs
  49. #pidfile = False
  50. #logfile = False
  51.  
  52. #privatekey = server.pem
  53. #certificate = server.pem
  54.  
  55. # Configure the SMTP connection
  56. #smtp_server = localhost
  57. #smtp_port = 25
  58. #smtp_ssl = False
  59. #smtp_tls = False
  60. #smtp_password = False
  61. #smtp_user = False
  62. #smtp_default_from_email = False
  63.  
  64. # Configure the path to store attachments and sqlite database
  65. #data_path = /var/lib/trytond
  66.  
  67. # Allow to run more than one instance of trytond
  68. #multi_server = False
  69.  
  70. # Configure the session timeout (inactivity of the client in sec)
  71. #session_timeout = 600
  72.  
  73. # Enable auto-reload of modules if changed
  74. #auto_reload = True
  75.  
  76. # Prevent database listing
  77. #prevent_dblist = False
  78.  
  79. # Enable cron
  80. # cron = True
  81.  
  82. # unoconv connection
  83. #unoconv = pipe,name=trytond;urp;StarOffice.ComponentContext
  84.  
  85. # Number of retries on database operational error
  86. # retry = 5
  87.  
  88. # Default language code
  89. # language = en_US
  90.  
  91. # Timezone of the server
  92. # timezone = False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement