From dccc85a5d189169383b23ccfcb78069e867570b9 Mon Sep 17 00:00:00 2001 From: Benni Baermann Date: Thu, 4 Mar 2021 10:19:00 +0100 Subject: [PATCH] use correct url with index.php for nextcloud in settings --- eva/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eva/settings.py b/eva/settings.py index 1491fd4..ec11949 100644 --- a/eva/settings.py +++ b/eva/settings.py @@ -135,7 +135,7 @@ STATIC_URL = '/static/' # settings needed for allauth SOCIALACCOUNT_PROVIDERS = { 'nextcloud': { - 'SERVER': 'https://wolke.wikimedia.de/', + 'SERVER': 'https://wolke.wikimedia.de/index.php', } }