Skip to content
Snippets Groups Projects
Verified Commit e761c1e6 authored by psy's avatar psy
Browse files

add setting for web_concurrency

parent a8a84609
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,10 @@ zammad: ...@@ -26,6 +26,10 @@ zammad:
geo_ip_backend: "" geo_ip_backend: ""
geo_location_backend: "" geo_location_backend: ""
image_backend: "" image_backend: ""
environment:
# How many instances of the application server to keep open at a time.
# Increasing this can reduce loading times when too many users are on Zammad at once.
web_concurrency: 1
email_signatures: {} email_signatures: {}
#email_notification_settings: {} #email_notification_settings: {}
email_notification_templates: {} email_notification_templates: {}
......
...@@ -80,6 +80,9 @@ ...@@ -80,6 +80,9 @@
overviews: "{{ zammad.overviews }}" overviews: "{{ zammad.overviews }}"
notify: build zammad elastic search index notify: build zammad elastic search index
- name: set zammad environment variables
ansible.builtin.shell: "zammad config:set WEB_CONCURRENCY={{ zammad.environment.web_concurrency }}"
- name: update notification templates - name: update notification templates
zammad_notification_templates: zammad_notification_templates:
templates: "{{ zammad.email_notification_templates }}" templates: "{{ zammad.email_notification_templates }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment