|
|
|
@@ -12,14 +12,14 @@ DefaultDependencies=no |
|
|
|
|
|
|
|
[Service] |
|
|
|
Type=simple |
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}" |
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}" |
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} kill matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
|
|
|
|
# Intentional delay, so that the homeserver (we likely depend on) can manage to start. |
|
|
|
ExecStartPre={{ matrix_host_command_sleep }} 5 |
|
|
|
|
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-mautrix-wsproxy \ |
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name matrix-mautrix-wsproxy \ |
|
|
|
--log-driver=none \ |
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \ |
|
|
|
--cap-drop=ALL \ |
|
|
|
@@ -32,8 +32,8 @@ ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-mautrix-wsprox |
|
|
|
{{ matrix_mautrix_wsproxy_docker_image }} \ |
|
|
|
/usr/bin/mautrix-wsproxy -config /data/config.yaml |
|
|
|
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} kill matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-mautrix-wsproxy 2>/dev/null' |
|
|
|
Restart=always |
|
|
|
RestartSec=30 |
|
|
|
SyslogIdentifier=matrix-mautrix-wsproxy |
|
|
|
|