Advertisement
Guest User

Trytond.conf_pyanu

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