Advertisement
Guest User

Untitled

a guest
Apr 12th, 2012
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1.  
  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. # This is the hostname used when generating tryton URI
  7. #hostname =
  8.  
  9. # Activate the json-rpc protocol
  10. jsonrpc = localhost:8000
  11. ssl_jsonrpc = *:8001
  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. # Configure the database type
  25. # allowed values are postgresql, sqlite, mysql
  26. db_type = postgresql
  27.  
  28. # Configure the database connection
  29. ## Note: Only databases owned by db_user will be displayed in the connection dialog
  30. ## of the Tryton client. db_user must have create permission for new databases
  31. ## to be able to use automatic database creation with the Tryton client.
  32. db_host = localhost
  33. db_port = 5432
  34. #db_user = tryton
  35. db_password = :)
  36. db_minconn = 1
  37. db_maxconn = 64
  38.  
  39. # Configure the postgresql path for the executable
  40. #pg_path = None
  41.  
  42. # Configure the Tryton server password
  43. admin_passwd = :)
  44.  
  45. # Configure the path of the files for the pid and the logs
  46. #pidfile = False
  47. #logfile = False
  48.  
  49. privatekey = /etc/ssl/trytond/server.key
  50. certificate = /etc/ssl/trytond/server.crt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement