Advertisement
tietutz

sample odoo config

Aug 8th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. [options]
  2.  
  3. admin_passwd = admin
  4. csv_internal_sep = ,
  5. reportgz = False
  6. without_demo = False
  7. import_partial =
  8. pidfile = None
  9. server_wide_modules = None
  10.  
  11. addons_path = /opt/odoo/addons/
  12.  
  13. xmlrpc = True
  14. xmlrpc_interface =
  15. xmlrpc_port = 8069
  16. proxy_mode = False
  17. xmlrpcs = True
  18. xmlrpcs_interface =
  19. xmlrpcs_port = 8071
  20.  
  21. secure_cert_file = server.cert
  22. secure_pkey_file = server.pkey
  23.  
  24. netrpc = False
  25. netrpc_interface =
  26. netrpc_port = 8070
  27.  
  28. dbfilter = .*
  29.  
  30. static_http_enable = False
  31. static_http_document_root = None
  32. static_http_url_prefix = None
  33.  
  34. test_file = False
  35. test_report_directory = False
  36. test_enable = False
  37. test_commit = False
  38.  
  39.  
  40. logfile = /var/log/odoo/odoo-server.log
  41. logrotate = True
  42. syslog = False
  43.  
  44. log_handler = [':INFO']
  45. log_level = info
  46.  
  47. email_from = False
  48. smtp_server = localhost
  49. smtp_port = 25
  50. smtp_ssl = False
  51. smtp_user = False
  52. smtp_password = False
  53.  
  54. db_name = False
  55. db_user = odoo
  56. db_password = odoo
  57.  
  58. pg_path = None
  59. db_host = False
  60. db_port = False
  61. db_maxconn = 64
  62. db_template = template1
  63.  
  64. translate_modules = ['all']
  65. list_db = True
  66.  
  67. debug_mode = False
  68.  
  69. timezone = False
  70.  
  71. osv_memory_count_limit = False
  72. osv_memory_age_limit = 1.0
  73. max_cron_threads = 2
  74.  
  75. unaccent = False
  76.  
  77. workers = 0
  78.  
  79. limit_memory_soft = 671088640
  80. limit_memory_hard = 805306368
  81. limit_time_cpu = 60
  82. limit_time_real = 120
  83. limit_request = 8192
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement