Advertisement
Guest User

tryton

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