From f7ce8a7c668211fb9138b9a5579f6d60ad819633 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 28 Sep 2022 23:41:56 -0700 Subject: [PATCH] minidlna: Use the exposed URL for diagnostic test This prevents the diagnostic failure. Tests: - Functional tests pass - Diagnostics page shows a test for each hostname in the system. All of them pass. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/minidlna/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/minidlna/__init__.py b/plinth/modules/minidlna/__init__.py index a08639517..e378d8d3b 100644 --- a/plinth/modules/minidlna/__init__.py +++ b/plinth/modules/minidlna/__init__.py @@ -75,7 +75,7 @@ class MiniDLNAApp(app_module.App): self.add(firewall) webserver = Webserver('webserver-minidlna', 'minidlna-freedombox', - urls=['http://localhost:8200/']) + urls=['https://{host}/_minidlna/']) self.add(webserver) daemon = Daemon('daemon-minidlna', 'minidlna')