Local image as logo - path

Hi,

Further to the question asked by Keqiang_Li:
I have also tried to use local image as the logo, however, did not manage.

Path:
file://localhost:8080/img/my_image.jpg
In:
\src\main\resources\fragments\navbar.html

\src\main\resources\static\img\my_image.jpg

What am I doing wrong?
I am using Shinyproxy 1.0.2.

Thanks,

1 Like

Hi @Sasha,
You need to specify the full path to the local image in the logo-url field of the configuration fileusing the file:// scheme, e.g.:
logo-url: file:///tmp/my_image.jpg (unix) or
logo-url: file:///c:/temp/my_image.jpg (windows)

1 Like

Thank you, it worked