I am trying to sign my private plugin, but it always says “Invalid signature” in grafana. I think the problem is, that I configured a root_url in the grafana config like root_url = %(protocol)s://%(domain)s/grafana/ and when I try to sign my plugin with npx @grafana/toolkit plugin:sign --signatureType private --rootUrls %(protocol)s://%(domain)s/grafana/ the command fails with Error: Error signing manifest: Value must be a URL: rootUrls[0]
What can I do to validate my signature?
EDIT
I refer to the documenation Sign a private plugin where it says
The
rootUrlsflag accepts a comma-separated list of URLs for which the plugin can be used. The URLs need to match the root_url setting.
Or it may change.