Skip to content
Snippets Groups Projects
Commit 03efc0b5 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '389-fix-apache-media' into 'develop'

Resolve "Fix Apache permission block on media files"

Closes #389

See merge request funkwhale/funkwhale!349
parents 3862034d cb41c9fd
No related branches found
No related tags found
No related merge requests found
Fix Apache2 permission issue preventing `/media` folder from being served correctly (#389)
Fix Apache2 configuration file for media block [Manual action required]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The permission scope on the current Apache2 configuration file is too narrow, preventing thumbnails from being served.
On Apache2 setups, you have to replace the following line::
<Directory /srv/funkwhale/data/media/albums>
with::
<Directory /srv/funkwhale/data/media>
You can now restart your server::
sudo systemctl restart apache2
......@@ -111,7 +111,7 @@ Define MUSIC_DIRECTORY_PATH /srv/funkwhale/data/music
Require all granted
</Directory>
<Directory /srv/funkwhale/data/media/albums>
<Directory /srv/funkwhale/data/media>
Options FollowSymLinks
AllowOverride None
Require all granted
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment