Compare commits

...

18 Commits

Author SHA1 Message Date
uumas
bdc9e46534 synapse: add argument specs 2023-12-21 18:01:27 +02:00
uumas
e92410cac2 v0.0.4 2023-07-19 00:26:10 +03:00
uumas
af224d8312 update worker config to use instance map 2023-07-19 00:25:22 +03:00
uumas
dc1e49c6e1 remove msc2716 2023-07-19 00:24:53 +03:00
uumas
1bfb412cf8 simplify matrix_auto_join_users 2023-07-14 13:59:00 +03:00
uumas
a26da1869b synapse: move worker vars under a subfolder 2023-04-27 16:52:47 +03:00
uumas
89af77a2d1 synapse: move persister_workers from defaults to vars 2023-04-27 16:15:53 +03:00
uumas
ea8e0d5b71 v0.0.3 2023-04-25 21:58:33 +03:00
uumas
323ec0152f Move todo to issues 2023-04-25 21:42:45 +03:00
uumas
979a6814b0 Update worker endpoints 2023-04-25 21:40:58 +03:00
uumas
a4b65f5b50 Migrate pusher and federations_sender to generic_worker 2023-04-25 21:40:43 +03:00
uumas
d1bbd974ab Remove frontend proxy worker 2023-04-25 21:39:51 +03:00
uumas
0033ffc405 Make it possible to remove legacy workers 2023-04-25 21:35:38 +03:00
uumas
46dc53580e Cleanup synchrotron balancers 2023-04-25 20:30:59 +03:00
uumas
2be85606c5 v0.0.2 2023-04-19 15:33:14 +03:00
uumas
db29f26d7a formatting 2023-04-19 15:29:15 +03:00
uumas
e8696ea656 Remove worker pidfiles, not needed as result of removing synchrotron-balancer 2023-04-19 15:27:01 +03:00
uumas
0f86bfbc02 Implement synchrotron balancing in nginx, replaces need for matrix-synchrotron-balancer 2023-04-19 15:19:30 +03:00
41 changed files with 200 additions and 222 deletions

View File

@@ -3,8 +3,4 @@
Roles for matrix services
# To do
- Add argument spec validation
- Move ldap auth provider from password providers to collections
- Implement synchrotron balancing in nginx
- Make updates optional (use state: present instead of state: latest unless requested)
- Only restart extras being changed, not all
See [issues](https://git.uumas.fi/uumas/ansible-matrix/issues)

View File

@@ -3,7 +3,7 @@
namespace: uumas
name: matrix
description: Matrix roles
version: 0.0.1
version: 0.0.4
readme: README.md
repository: https://git.uumas.fi/uumas/ansible-matrix
license_file: LICENSE

View File

@@ -1,5 +1,6 @@
---
# Worker endpoints last updated on 2023-07-18
nginx_upstreams:
synapse_main:
servers:
@@ -21,13 +22,15 @@ nginx_upstreams:
additional_options:
- "client_max_body_size {{ matrix_max_upload_size_mb }}M"
synchrotron_balancer:
servers: "{{ ['8183'] if synapse_workers.generic_sync is defined else '' }}"
synapse_generic_sync:
servers: "{{ synapse_workers.generic_sync | default('') }}"
method: 'hash $mxid_localpart'
locations:
- name: '~ ^/_matrix/client/(api/v1|r0|v3)/events$'
- name: "{{ '^/_matrix/client/(v2_alpha|r0|v3)/sync$' if 'generic_init_sync' not in synapse_workers | default('') else '' }}"
synchrotron_init:
servers: "{{ ['8184'] if synapse_workers.generic_init_sync is defined else '' }}"
synapse_generic_init_sync:
servers: "{{ synapse_workers.generic_init_sync | default('') }}"
method: 'hash $mxid_localpart'
locations:
- name: '~ ^/_matrix/client/(api/v1|r0|v3)/initialSync$'
- name: '~ ^/_matrix/client/(api/v1|r0|v3)/rooms/[^/]+/initialSync$'
@@ -41,7 +44,8 @@ nginx_upstreams:
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/members$'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/state$'
- name: '~ ^/_matrix/client/v1/rooms/.*/hierarchy$'
- name: '~ ^/_matrix/client/unstable/org.matrix.msc2716/rooms/.*/batch_send$'
- name: '~ ^/_matrix/client/(v1|unstable)/rooms/.*/relations/'
- name: '~ ^/_matrix/client/v1/rooms/.*/threads$'
- name: '~ ^/_matrix/client/unstable/im.nheko.summary/rooms/.*/summary$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/account/3pid$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/account/whoami$'
@@ -50,7 +54,12 @@ nginx_upstreams:
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/voip/turnServer$'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/event/'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/joined_rooms$'
- name: '~ ^/_matrix/client/v1/rooms/.*/timestamp_to_event$'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable/.*)/rooms/.*/aliases'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/search$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/user/.*/filter(/|$)'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/directory/room/.*$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/capabilities$'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/keys/query$'
additional_options:
@@ -58,12 +67,15 @@ nginx_upstreams:
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/keys/changes$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/keys/claim$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/room_keys/'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/keys/upload/'
synapse_generic_login:
servers: "{{ synapse_workers.generic_login | default('') }}"
locations:
- name: '~ ^/_matrix/client/(api/v1|r0|unstable|v3)/login$'
- name: '~ ^/_matrix/client/(r0|unstable|v3)/register$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/register/available$'
- name: '~ ^/_matrix/client/v1/register/m.login.registration_token/validity$'
- name: '~ ^/_matrix/client/(r0|v3|unstable)/password_policy$'
# SSO
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/login/sso/redirect'
- name: '~ ^/_synapse/client/pick_idp$'
@@ -94,6 +106,7 @@ nginx_upstreams:
- name: '~ ^/_matrix/federation/(v1|v2)/send_leave/'
- name: '~ ^/_matrix/federation/(v1|v2)/invite/'
- name: '~ ^/_matrix/federation/v1/event_auth/'
- name: '~ ^/_matrix/federation/v1/timestamp_to_event/'
- name: '~ ^/_matrix/federation/v1/exchange_third_party_invite/'
- name: '~ ^/_matrix/federation/v1/user/devices/'
- name: '~ ^/_matrix/key/v2/query'
@@ -116,6 +129,7 @@ nginx_upstreams:
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/join/'
additional_options:
- 'proxy_read_timeout 1h'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/knock/'
- name: '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/profile/'
synapse_generic_pagination:
servers: "{{ synapse_workers.generic_pagination | default('') }}"
@@ -126,11 +140,6 @@ nginx_upstreams:
servers: "{{ synapse_workers.user_dir | default('') }}"
locations:
- name: '~ ^/_matrix/client/(r0|v3|unstable)/user_directory/search$'
synapse_frontend_proxy:
servers: "{{ synapse_workers.frontend_proxy | default('') }}"
locations:
- name: '~ ^/_matrix/client/(r0|v3|unstable)/keys/upload'
- name: "{{ '~ ^/_matrix/client/(api/v1|r0|v3|unstable)/presence/[^/]+/status' if synapse_presence is defined and not synapse_presence else '' }}"
synapse_media_repository:
servers: "{{ synapse_workers.media_repository | default('') }}"
locations:
@@ -192,12 +201,23 @@ nginx_maps:
sync:
var: "{{ 'arg_since' if synapse_workers.generic_sync is defined and synapse_workers.generic_init_sync is defined else '' }}"
rules:
default: synchrotron_balancer
"''": synchrotron_init
default: synapse_generic_sync
"''": synapse_generic_init_sync
locations:
- name: '~ ^/_matrix/client/(r0|v3)/sync$'
additional_options:
- 'proxy_read_timeout 1h'
mxid_localpart_urlparam:
var: arg_access_token
rules:
default: $arg_access_token
"'~syt_(?<username>.*?)_.*'": $username
mxid_localpart:
var: http_authorization
rules:
default: $http_authorization
"'~Bearer syt_(?<username>.*?)_.*'": $username
"''": $mxid_localpart_urlparam
nginx_servers:
- listen:
@@ -225,14 +245,13 @@ nginx_servers:
- synapse_main
- matrix_media_repo
- synapse_media_repository
- synapse_generic_sync
- synapse_generic_init_sync
- synapse_generic_client
- synapse_generic_login
- synapse_generic_event_send
- synapse_generic_pagination
- synapse_user_dir
- synapse_frontend_proxy
- synchrotron_balancer
- synchrotron_init
- synapse_device_persister
- synapse_typing_persister
- synapse_account_persister

View File

@@ -9,14 +9,4 @@ matrix_max_upload_size_mb: 100
synapse_metrics: false
synapse_presence: true
synchrotron_workers:
balancer: generic_sync
init: generic_init_sync
persister_workers:
- event_persister
- typing_persister
- account_persister
- device_persister
- presence_persister
- receipt_persister
matrix_auto_join_rooms: []

View File

@@ -14,6 +14,13 @@
enabled: true
state: restarted
- name: Disable worker services
ansible.builtin.systemd:
name: "matrix-synapse-worker@{{ item }}.service"
state: stopped
enabled: false
loop: "{{ synapse_disable_worker_services }}"
- name: Config worker services
ansible.builtin.systemd:
daemon_reload: true
@@ -21,3 +28,12 @@
enabled: true
loop: "{{ synapse_worker_services }}"
notify: Config matrix target
- name: Disable matrix-synchrotrons
ansible.builtin.systemd:
daemon_reload: true
name: matrix-synchrotron@{{ item }}.service
enabled: false
loop:
- balancer
- init

View File

@@ -0,0 +1,53 @@
---
argument_specs:
main:
short_description: Matrix Synaspe
description: "Installs and configures a synapse server. Supports workers and matrix_synapse_shared_secret_auth"
options:
synapse_psql_user:
description: Postgres database username for synapse
type: str
required: true
synapse_psql_pw:
description: Postgres database password for synapse
type: str
required: true
synapse_psql_db:
description: Postgres database name for synapse
type: str
required: false
default: "{{ synapse_psql_user }}"
synapse_psql_host:
description: Postgres database server hostname
type: str
required: false
default: localhost
matrix_max_upload_size_mb:
description: Maximum file upload size for synapse in megabytes
type: int
required: false
default: 100
matrix_auto_join_rooms:
description: A list of room aliases new users will be joined to automatically
type: list
required: false
default: []
matrix_signing_key:
description: Matrix federation signing key. Will use auto-generated one if not defined.
type: str
required: false
synapse_metrics:
description: Whether to enable prometheus metrics listener on port 9656
type: bool
required: false
default: false
synapse_presence:
description: Whether to enable presence detection on synapse. If disabled all users will be shown as permanently offline.
type: bool
required: false
default: true

View File

@@ -29,6 +29,7 @@
- listeners
- server_name
- url_preview
- autojoin
notify: Config matrix target
- name: Ensure synapse configs including secrets is in place
@@ -43,16 +44,6 @@
- general
notify: Config matrix target
- name: Ensure autojoin config is in place
ansible.builtin.template:
src: conf.d/autojoin.yaml.j2
dest: /etc/matrix-synapse/conf.d/autojoin.yaml
owner: matrix-synapse
group: nogroup
mode: 0644
when: matrix_auto_join_rooms is defined
notify: Config matrix target
- name: Ensure password provider config is in place
ansible.builtin.template:
src: conf.d/password_providers.yaml.j2

View File

@@ -1,23 +0,0 @@
---
- name: Ensure workdir exists for matrix-synchrotron-{{ item }}
ansible.builtin.file:
path: /opt/matrix-synchrotron/{{ item }}
state: directory
mode: 0755
- name: Ensure config in place for matrix-synchrotron-{{ item }}
ansible.builtin.template:
src: matrix-synchrotron-config.yaml.j2
dest: /opt/matrix-synchrotron/{{ item }}/config.yaml.ansibled
mode: 0644
notify: Config synapse service
register: config
- name: Copy config to final destination for matrix-synchrotron-{{ item }}
ansible.builtin.copy:
src: /opt/matrix-synchrotron/{{ item }}/config.yaml.ansibled
dest: /opt/matrix-synchrotron/{{ item }}/config.yaml
remote_src: true
mode: 0644
when: config.changed

View File

@@ -1,53 +1,13 @@
---
- name: Install git and golang
ansible.builtin.apt:
name:
- git
- golang
- name: Create matrix-synchrotron user
- name: Ensure matrix-synchrotron user not present
ansible.builtin.user:
name: matrix-synchrotron
system: true
home: /opt/matrix-synchrotron
shell: /bin/false
state: absent
remove: true
- name: Install matrix-synchrotron
become_user: matrix-synchrotron
block:
- name: Clone matrix-synchrotron git repo
ansible.builtin.git:
repo: https://github.com/Sorunome/matrix-synchrotron-balancer.git
dest: /opt/matrix-synchrotron/src
force: true
register: install
- name: Build matrix-synchrotron
ansible.builtin.command: go build
args:
chdir: /opt/matrix-synchrotron/src
when: install.changed
notify: Config synapse service
- name: Configure matrix-synchrotron(s)
ansible.builtin.include_tasks: matrix-synchrotron.yml
loop: "{{ synapse_synchrotrons }}"
loop_control:
extended: true
- name: Put systemd matrix-synchrotron unit in place
ansible.builtin.template:
src: systemd/matrix-synchrotron@.service.j2
dest: /etc/systemd/system/matrix-synchrotron@.service
mode: "644"
register: systemd_unit
- name: Enable systemd unit matrix-synchrotron-{{ item }}
ansible.builtin.systemd:
daemon_reload: true
name: matrix-synchrotron@{{ item }}.service
enabled: true
state: restarted
when: systemd_unit.changed
loop: "{{ synapse_synchrotrons }}"
- name: Ensure matrix-synchrotron unit not present
ansible.builtin.file:
path: /etc/systemd/system/matrix-synchrotron@.service
state: absent
notify: Disable matrix-synchrotrons

View File

@@ -4,20 +4,44 @@
ansible.builtin.set_fact:
worker: "{{ worker_type }}-{{ worker_index | default('0') }}"
- name: Ensure config in place for {{ worker }}
- name: Enable worker {{ worker }}
when: worker_state == 'present'
block:
- name: Ensure config in place for {{ worker }}
ansible.builtin.template:
src: worker.yaml.j2
dest: /etc/matrix-synapse/workers/{{ worker }}.yaml
mode: 0644
notify: Config worker services
- name: Ensure logging config in place for {{ worker }}
- name: Ensure logging config in place for {{ worker }}
ansible.builtin.template:
src: log.yaml.j2
dest: /etc/matrix-synapse/worker-logs/{{ worker }}-log.yaml
mode: 0644
notify: Config worker services
- name: Add worker to synapse_worker_services variable
- name: Add worker to synapse_worker_services variable
ansible.builtin.set_fact:
synapse_worker_services: "{{ synapse_worker_services + [worker] }}"
- name: Disable worker {{ worker }}
when: worker_state == 'absent'
block:
- name: Notify the user
ansible.builtin.debug:
msg: "Disabling worker {{ worker }}! Make sure to remove it from your synapse_workers."
- name: Ensure worker config files not present
ansible.builtin.file:
path: /etc/matrix-synapse/{{ item }}.yaml
state: absent
notify: Disable worker services
loop:
- workers/{{ worker }}
- worker-logs/{{ worker }}-log
- name: Add worker to synapse_disable_worker_services
ansible.builtin.set_fact:
synapse_disable_worker_services: "{{ synapse_worker_services + [worker] }}"

View File

@@ -5,15 +5,20 @@
worker_type: "{{ synapse_worker.key }}"
- name: Include default variables
ansible.builtin.include_vars: defaults.yml
ansible.builtin.include_vars: workers/defaults.yml
- name: Include variables for {{ worker_type }}
ansible.builtin.include_vars: "{{ item }}"
with_first_found:
- files:
- "{{ worker_type }}.yml"
- "workers/{{ worker_type }}.yml"
skip: true
- name: Warn of legacy workers
ansible.builtin.debug:
msg: "You have a deprecated worker type {{ worker_type }} defined. You should remove it from synapse_workers."
when: worker_state == 'absent'
- name: Reset worker_ports variable
ansible.builtin.set_fact:
worker_ports: []
@@ -33,8 +38,3 @@
- name: Include worker instance tasks for {{ worker_type }}
ansible.builtin.include_tasks: worker_instance.yml
when: worker_ports|length == 0
- name: Append synchrotron variable
ansible.builtin.set_fact:
synapse_synchrotrons: "{{ synapse_synchrotrons + [synchrotron_type] }}"
when: synchrotron_type is defined and synchrotron_type not in synapse_synchrotrons

View File

@@ -25,21 +25,6 @@
- name: Initialize synapse worker vars
ansible.builtin.set_fact:
synapse_worker_services: []
synapse_synchrotrons: []
- name: Ensure worker pidfile dir in /run exists
ansible.builtin.file:
path: /run/matrix-synapse/
state: directory
owner: matrix-synapse
group: nogroup
mode: 0755
- name: Ensure tmpfiles config for pidfile dir in place
ansible.builtin.template:
src: tmpfiles-matrix-synapse.conf.j2
dest: /etc/tmpfiles.d/matrix-synapse.conf
mode: 0644
- name: Configure workers
ansible.builtin.include_tasks: worker_type.yml
@@ -47,6 +32,15 @@
loop_control:
loop_var: synapse_worker
- name: Configure synchrotron balancer
- name: Ensure worker pidfile dir in /run not present (legacy)
ansible.builtin.file:
path: /run/matrix-synapse/
state: absent
- name: Ensure tmpfiles config for pidfile dir not present (legacy)
ansible.builtin.file:
path: /etc/tmpfiles.d/matrix-synapse.conf
state: absent
- name: Ensure synchrotron balancer removed (legacy)
ansible.builtin.include_tasks: matrix-synchrotrons.yml
when: synapse_synchrotrons | length != 0

View File

@@ -1,6 +1,3 @@
# {{ ansible_managed }}
auto_join_rooms:
{% for room_id in matrix_auto_join_rooms %}
- "{{ room_id }}"
{% endfor %}
auto_join_rooms: {{ matrix_auto_join_rooms }}

View File

@@ -12,5 +12,3 @@ use_presence: {{ synapse_presence }}
enable_media_repo: {{ matrix_media_repo_server is not defined and 'media_repository' not in synapse_workers }}
retention:
enabled: true
experimental_features:
msc2716_enabled: true

View File

@@ -6,7 +6,10 @@ redis:
notify_appservices_from_worker: appservice-0
{% endif %}
{% if 'pusher' in synapse_workers %}
start_pushers: false
pusher_instances:
{% for port in synapse_workers.pusher %}
- pusher-{{ loop.index0 }}
{% endfor %}
{% endif %}
{% if 'user_dir' in synapse_workers %}
update_user_directory_from_worker: user_dir-0
@@ -15,9 +18,11 @@ update_user_directory_from_worker: user_dir-0
{% if 'event_persister' in synapse_workers or 'typing_persister' in synapse_workers or 'account_persister' in synapse_workers or 'device_persister' in synapse_workers or 'presence_persister' in synapse_workers or 'receipt_persister' in synapse_workers %}
instance_map:
main:
host: localhost
port: 9093
{% for persister_type in persister_workers %}
{% if persister_type in synapse_workers %}
{% for port in synapse_workers[persister_type] %}
{{ persister_type }}-{{ loop.index0 }}:
@@ -25,7 +30,6 @@ instance_map:
port: {{ port }}
{% endfor %}
{% endif %}
{% endfor %}
stream_writers:
@@ -78,13 +82,8 @@ run_background_tasks_on: background_tasks-0
{% endif %}
{% if 'federation_sender' in synapse_workers %}
send_federation: false
{% if synapse_workers.federation_sender|length > 1 %}
federation_sender_instances:
{% for port in synapse_workers.federation_sender %}
- federation_sender-{{ loop.index0 }}
{% endfor %}
{% endif %}
{% endif %}

View File

@@ -1,12 +0,0 @@
# {{ ansible_managed }}
homeserver_url: http://localhost:8008 # homeserver URL for the whoami request
listener: localhost:{{ 8183 + ansible_loop.index0 }} # host:port to listen to
synchrotrons:
{% for port in synapse_workers[synchrotron_workers[item]] %}
- address: 127.0.0.1:{{ port }}
pid_file: /run/matrix-synapse/{{ synchrotron_workers[item] }}-{{ loop.index0 }}.pid
{% endfor %}
balancer:
interval: 2

View File

@@ -10,12 +10,10 @@ After=matrix-synapse.service
[Service]
Type=notify
NotifyAccess=main
PIDFile=/run/matrix-synapse/%i.pid
User=matrix-synapse
WorkingDirectory=/var/lib/matrix-synapse
EnvironmentFile=-/etc/default/matrix-synapse
ExecStart=/opt/venvs/matrix-synapse/bin/python -m synapse.app.generic_worker --config-path=/etc/matrix-synapse/homeserver.yaml --config-path=/etc/matrix-synapse/conf.d/ --config-path=/etc/matrix-synapse/workers/%i.yaml
ExecStartPost=/bin/sh -c "echo $MAINPID > /run/matrix-synapse/%i.pid"
ExecReload=/bin/kill -HUP $MAINPID
Restart=always
RestartSec=3

View File

@@ -1,17 +0,0 @@
# {{ ansible_managed }}
[Unit]
Description=Matrix Synchrotron %i
After=matrix-synapse.service
PartOf=matrix-synapse.service
[Service]
Type=simple
User=matrix-synchrotron
WorkingDirectory=/opt/matrix-synchrotron/%i
ExecStart=/opt/matrix-synchrotron/src/matrix-synchrotron-balancer
Restart=always
RestartSec=3
[Install]
WantedBy=matrix-synapse.service

View File

@@ -1 +0,0 @@
d /run/matrix-synapse 0755 matrix-synapse nogroup - -

View File

@@ -2,10 +2,6 @@
worker_app: synapse.app.{{ worker_app }}
worker_name: {{ worker }}
# The replication listener on the synapse to talk to.
worker_replication_host: 127.0.0.1
worker_replication_http_port: 9093
worker_log_config: /etc/matrix-synapse/worker-logs/{{ worker }}-log.yaml
{% if worker_port is defined and worker_listeners|length !=0 or synapse_metrics %}
worker_listeners:
@@ -24,6 +20,3 @@ worker_listeners:
bind_addresses: ['0.0.0.0'] # Don't bind to multiple addresses
{% endif %}
{% endif %}
{% if worker_app == 'frontend_proxy' %}
worker_main_http_uri: http://localhost:8008
{% endif %}

View File

@@ -1,4 +0,0 @@
---
worker_app: federation_sender
worker_listeners: []

View File

@@ -1,3 +0,0 @@
---
worker_app: frontend_proxy

View File

@@ -1,3 +0,0 @@
---
synchrotron_type: init

View File

@@ -1,3 +0,0 @@
---
synchrotron_type: balancer

View File

@@ -0,0 +1,9 @@
---
persister_workers:
- event_persister
- typing_persister
- account_persister
- device_persister
- presence_persister
- receipt_persister

View File

@@ -1,5 +1,6 @@
---
worker_state: present
worker_app: generic_worker
worker_listeners:
- client

View File

@@ -0,0 +1,3 @@
---
worker_listeners: []

View File

@@ -0,0 +1,4 @@
---
# LEGACY
worker_state: absent

View File

@@ -1,4 +1,3 @@
---
worker_app: pusher
worker_listeners: []