diff --git a/roles/live/tasks/main.yml b/roles/live/tasks/main.yml index 9aa9dbe3ad6e417806a3f9b1c8913c48cb2e3851..f4105ffee4e8a2223d5ba8cdb579c41e350dff96 100644 --- a/roles/live/tasks/main.yml +++ b/roles/live/tasks/main.yml @@ -19,13 +19,13 @@ opts: defaults,size={{ live_tmpfs_size }} state: mounted -- name: Changing the rights on the TMPFS directory - notify: restart nginx - ansible.builtin.file: - path: /var/tmp/nginx-rtmp - owner: nginx - group: root - # not working with a tmpfs (777) - #mode: "0700" +# not working with a tmpfs (mode=777, user=group=root) +#- name: Changing the rights on the TMPFS directory +# notify: restart nginx +# ansible.builtin.file: +# path: /var/tmp/nginx-rtmp +# owner: nginx +# group: root +# mode: "0700" ...