mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 11:09:55 +02:00
19 lines
590 B
Text
19 lines
590 B
Text
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
|