fixing the wsgi server by removing trailing slashes on static files

fixes #4091
This commit is contained in:
Jochen Saalfeld 2019-01-09 16:57:37 +01:00
parent ebf51507f8
commit 73a3001a35
No known key found for this signature in database
GPG Key ID: 8ACD4E8264B67DF4
1 changed files with 0 additions and 4 deletions

View File

@ -1,6 +1,5 @@
from django.conf import settings
from django.conf.urls import include, url
from django.views.generic import RedirectView
from openslides.mediafiles.views import protected_serve
from openslides.utils.rest_api import router
@ -15,9 +14,6 @@ urlpatterns = [
protected_serve,
{"document_root": settings.MEDIA_ROOT},
),
# When a url without a leading slash is requested, redirect to the url with
# the slash. This line has to be after static and media files.
url(r"^(?P<url>.*[^/])$", RedirectView.as_view(url="/%(url)s/", permanent=True)),
# URLs for the rest system
url(r"^rest/", include(router.urls)),
# Other urls defined by modules and plugins