navidrome: fix up things

This commit is contained in:
dogeystamp 2024-10-12 10:37:49 -04:00
parent dd39e0043e
commit 20ce8eedeb
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38
2 changed files with 11 additions and 0 deletions

View File

@ -113,6 +113,16 @@
group: vault
mode: "u=rwX,g=rwX,o="
- name: Set ACL to allow navidrome to read synced music
ansible.posix.acl:
default: true
entity: navidrome
etype: user
permissions: rx
recursive: true
state: present
path: "{{ music_path }}"
- name: Create docker-compose directory
ansible.builtin.file:
path: "{{ docker_compose_dir }}"

View File

@ -61,6 +61,7 @@ services:
environment:
ND_LISTENBRAINZ_ENABLED: true
ND_ENABLESHARING: {{ navidrome_sharing | default("false", true) }}
ND_SESSIONTIMEOUT: "168h"
restart: unless-stopped
volumes:
- "{{ dataroot }}/navidrome:/data"