fixed https request

This commit is contained in:
Ebbe Baß
2026-07-14 14:27:26 +02:00
parent 5df2199f3a
commit 78fbd40d73
@@ -40,7 +40,7 @@
- name: Point richdocuments at the Collabora server - name: Point richdocuments at the Collabora server
ansible.builtin.command: > ansible.builtin.command: >
sudo -u www-data php occ config:app:set richdocuments wopi_url sudo -u www-data php occ config:app:set richdocuments wopi_url
--value="https://{{ collabora_fqdn }}:9980" --value="https://{{ collabora_fqdn }}:443"
args: args:
chdir: /etc/nextcloud chdir: /etc/nextcloud
changed_when: true changed_when: true
@@ -48,7 +48,7 @@
- name: Set the public WOPI URL (same value, used for editor loading) - name: Set the public WOPI URL (same value, used for editor loading)
ansible.builtin.command: > ansible.builtin.command: >
sudo -u www-data php occ config:app:set richdocuments public_wopi_url sudo -u www-data php occ config:app:set richdocuments public_wopi_url
--value="https://{{ collabora_fqdn }}:9980" --value="https://{{ collabora_fqdn }}:443"
args: args:
chdir: /etc/nextcloud chdir: /etc/nextcloud
changed_when: true changed_when: true