From 2e8382785c07d4be60b12734ea3c34b66915ac95 Mon Sep 17 00:00:00 2001 From: bernhard Date: Sat, 9 Mar 2024 13:36:53 +0100 Subject: [PATCH] Issue #2886: add example how the static file path can be changed --- bin/psgi-bin/otobo.psgi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/psgi-bin/otobo.psgi b/bin/psgi-bin/otobo.psgi index d95db7b9d3..81a30df854 100755 --- a/bin/psgi-bin/otobo.psgi +++ b/bin/psgi-bin/otobo.psgi @@ -645,6 +645,10 @@ builder { # Server the static assets in var/httpd/htdocs. mount '/otobo-web' => $StaticApp; + # Alternative mounts are also possible. + # Note that Fronend::WebPath needs to be adapted when the path is changed. + #mount '/otobo/assets' => $StaticApp; + # the most basic App mount '/hello' => $HelloApp;