mirror of
https://github.com/YunoHost-Apps/django-fmd_ynh.git
synced 2024-09-03 18:26:27 +02:00
Bugfix FMD web page and his static files
This commit is contained in:
parent
248b449375
commit
f6e9ac9616
1 changed files with 5 additions and 2 deletions
|
@ -16,6 +16,9 @@ if settings.PATH_URL:
|
||||||
# path(f'{settings.PATH_URL}/debug/', request_media_debug_view),
|
# path(f'{settings.PATH_URL}/debug/', request_media_debug_view),
|
||||||
|
|
||||||
path(f'{settings.PATH_URL}/', include('findmydevice_project.urls')),
|
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})
|
||||||
]
|
]
|
||||||
if settings.SERVE_FILES:
|
if settings.SERVE_FILES:
|
||||||
urlpatterns += static.static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
urlpatterns += static.static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||||
|
@ -24,5 +27,5 @@ else:
|
||||||
# Just use the default project urls.py
|
# Just use the default project urls.py
|
||||||
from findmydevice_project.urls import urlpatterns # noqa
|
from findmydevice_project.urls import urlpatterns # noqa
|
||||||
|
|
||||||
# TODO: Serve from nginx server ;)
|
# TODO: Serve from nginx server ;)
|
||||||
urlpatterns.append(path('<path:path>', serve, {'document_root': findmydevice.WEB_PATH}))
|
urlpatterns.append(path('<path:path>', serve, {'document_root': findmydevice.WEB_PATH}))
|
||||||
|
|
Loading…
Reference in a new issue