Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Giger
funkwhale
Commits
cb41c9fd
Commit
cb41c9fd
authored
6 years ago
by
R En
Browse files
Options
Downloads
Patches
Plain Diff
fix apache media block
parent
3862034d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/changelog.d/389.bugfix
+19
-0
19 additions, 0 deletions
changes/changelog.d/389.bugfix
deploy/apache.conf
+1
-1
1 addition, 1 deletion
deploy/apache.conf
with
20 additions
and
1 deletion
changes/changelog.d/389.bugfix
0 → 100644
+
19
−
0
View file @
cb41c9fd
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
This diff is collapsed.
Click to expand it.
deploy/apache.conf
+
1
−
1
View file @
cb41c9fd
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment