1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/django-fmd_ynh.git synced 2024-09-03 18:26:27 +02:00
django-fmd_ynh/conf/urls.py
2024-06-18 08:38:03 +02:00

24 lines
896 B
Python

import findmydevice
from django.conf import settings
from django.urls import include, path
from django.views.generic import RedirectView
from django.views.static import serve
if settings.PATH_URL:
# settings.PATH_URL is app_path
# Prefix all urls with "PATH_URL":
urlpatterns = [
path('', RedirectView.as_view(url=f'{settings.PATH_URL}/')),
path(f'{settings.PATH_URL}/', include('findmydevice_project.urls')),
#
# TODO: Serve from nginx server ;)
path(f'{settings.PATH_URL}/<path:path>', serve, {'document_root': findmydevice.WEB_PATH}),
]
else:
# Installed to domain root, without a path prefix
# Just use the default project urls.py
from findmydevice_project.urls import urlpatterns # noqa
# TODO: Serve from nginx server ;)
urlpatterns.append(path('<path:path>', serve, {'document_root': findmydevice.WEB_PATH}))