zope.conf.in 3.38 KB
Newer Older
1 2
# Note: Environment is setup in running wrapper script, as zope.conf is read
# too late for some components.
3
%define INSTANCE {{ parameter_dict['instance'] }}
4 5
instancehome $INSTANCE
zserver-threads {{ parameter_dict['thread-amount'] }}
6 7 8 9 10 11 12 13
# When ownership checking is enabled, the roles a script runs as are the
# intersection between user's roles and script owner's roles. This means
# that revoking a code author's access to the system prevent all scripts
# owned by that user from being of much use.
# This is not how ERP5 approaches development: Managers write code,
# Managers must be trustable and trusted, and their past work should not be
# revoked when their account is terminated.
skip-ownership-checking true
14 15 16 17 18 19 20 21 22

lock-filename {{ parameter_dict['lock-file'] }}
pid-filename {{ parameter_dict['pid-file'] }}

default-zpublisher-encoding utf-8
rest-input-encoding utf-8
rest-output-encoding utf-8

# XXX: isn't this entry implicit ?
23
products {{ parameter_dict['instance-products'] }}
24

25
{% if parameter_dict['webdav'] -%}
26
<webdav-source-server>
27
  address {{ parameter_dict['ip'] }}:{{ parameter_dict['port'] }}
28 29
  force-connection-close off
</webdav-source-server>
30 31 32 33 34
{% else %}
<http-server>
  address {{ parameter_dict['ip'] }}:{{ parameter_dict['port'] }}
</http-server>
{%- endif %}
35 36 37 38 39 40

<zoperunner>
    program $INSTANCE/bin/runzope
</zoperunner>

<product-config DeadlockDebugger>
41 42
  dump_url {{ parameter_dict['deadlock-path'] }}
  secret {{ parameter_dict['deadlock-debugger-password'] }}
43 44
</product-config>

45
{% if 'tidstorage-ip' in parameter_dict -%}
46
<product-config TIDStorage>
47
  backend-ip {{ parameter_dict['tidstorage-ip'] }}
48
  backend-port {{ parameter_dict['tidstorage-port'] }}
49 50 51
</product-config>

{% endif -%}
52 53 54 55
<product-config CMFActivity>
  node-id {{ parameter_dict['node-id'] }}
</product-config>

56
{% set timerserver_interval = parameter_dict['timerserver-interval'] -%}
57
{% if timerserver_interval -%}
58 59
%import timerserver
<timer-server>
60
  interval {{ timerserver_interval }}
61 62 63
</timer-server>

{% endif -%}
64
{% set promise_path = parameter_dict['promise-path'] -%}
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
{% if promise_path -%}
<product-config /{{ parameter_dict['site-id'] }}>
  promise_path {{ promise_path }}
</product-config>

{% endif -%}
<eventlog>
  level info
  <logfile>
    dateformat
    path {{ parameter_dict['event-log'] }}
  </logfile>
</eventlog>

<logger access>
  level WARN
  <logfile>
    dateformat
    path {{ parameter_dict['z2-log'] }}
  </logfile>
</logger>

<zodb_db temporary>
  <temporarystorage>
    name temporary storage for sessioning
  </temporarystorage>
  mount-point /temp_folder
  container-class Products.TemporaryFolder.TemporaryContainer
</zodb_db>

95 96 97 98 99 100 101
{% set developer_list = parameter_dict['developer-list'] -%}
{% if developer_list -%}
%import Products.ERP5Type
<ERP5Type erp5>
  developers {{ developer_list | join(' ') }}
</ERP5Type>

102 103 104 105
{% endif -%}
{% for m in parameter_dict['import-list'] -%}
%import {{ m }}
{% endfor -%}
106 107 108 109 110
{% set type_dict = {'neo': 'NEOStorage', 'zeo': 'zeoclient'} %}
{% for name, zodb_dict in parameter_dict['zodb-dict'].iteritems() %}
<zodb_db {{ name }}>
{%- set storage_type = type_dict[zodb_dict.pop('type')] %}
{%- set storage_dict = zodb_dict.pop('storage-dict') %}
111 112 113
{%- for key, value in zodb_dict.iteritems() %}
  {{ key }} {{ value }}
{%-   endfor %}
114 115 116 117 118 119 120 121
  <{{ storage_type }}>
{%-   for key, value in storage_dict.iteritems() %}
    {{ key }} {{ value }}
{%-   endfor %}
  </{{ storage_type }}>
</zodb_db>

{% endfor -%}