Librephotos Alternate Directory

Hardware: Dell R720
YunoHost version: Powered by YunoHost 4.1.8 (stable).
I have access to my server : SSH, direct access
Are you in a special context or did you perform some particular tweaking on your YunoHost instance ? : not really. I have a RAID server.

Description of my issue

This is the most recent librephotos updatw

I have all of my media saved on /var/Multimedia subfolders. For example, music is at /var/Multimedia/Music.

Photos are saved at /var/Multimedia/Photos. I tried to let Librephotos know this by going to Admin area → and setting the user storage to /var/Multimedia/Photos. However, every time I saved it, it just resets to `/home/yunohost.app/librephotos/data/nextcloud_media’

In the past for YNH apps I have fixed this by adding apps to a group called Multimedia. That looks like this:

sudo su
usermod librephotos -a -G multimedia
# Set permissions
chown librephotos:multimedia -R /var/Multimedia
find /var/Multimedia -type d -exec chmod 0775 {} \;
find /var/Multimedia -type f -exec chmod 0664 {} \;
setfacl -d -m u::rwX,g::rwX,o::r /var/Multimedia
# Restart services
systemctl restart nginx
systemctl restart php7.3-fpm
systemctl restart php7.4-fpm
systemctl restart librephotos

However, this didn’t seem to work in librephotos case. What am I missing?

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.