kelinger / OmniStream

Deployment and management tools for an entire streaming platform that can reside on a server (local, remote, hosted, VPS) with media files stored on cloud services like Google Drive or Dropbox.
MIT License
30 stars 8 forks source link

Nextcloud - healthy container but page stuck loading (not 404) #48

Closed falcomm6 closed 1 year ago

falcomm6 commented 1 year ago

Hi there,

ive recently set up nextcloud, but after about 30mins the webapp just stalls out. Do you know what could be causing this? The container is healthy.

Restarting the container does not help. However, omni down, then omni up fixes things temporarily. I tried with sqllite and mariadb to see if its the database, but the issue still occurs. Any pointers would be appreciated.

Thanks

kelinger commented 1 year ago

NextCloud is a nasty beast. After turning it up for the first time, I have to immediately take it down and then fix the permissions for the files it created. Make sure the nextcloud config directory and its contents are owned by "www-data"

omni configs
sudo chown -R www-data:www-data nextcloud

MariaDB and Redis also appear to need to be owned by "systemd-timesync" though I can't remember if I made that change myself or that's just how they were created.

falcomm6 commented 1 year ago

Thanks Ken, appreciated