Panel plugin not found

Hello everybody,

I hope you can help me.I have the following problem:
Some panels are not loaded via the Auth Proxy.
The error e.g. “Panel plugin not found: grafana-clock-panel is coming.”
When calling via the normal port, everything works as usual.

Here is my configuration:

grafana.ini:
[server]
protocol = https
domain = domain.de
rout_url = https://domain(.)de
[auth.proxy]
enabled = true
header_name = X-WEBAUTH-USER
header_property = username
auto_sign_up = true
cert_file = /ssl/domain(.)de.crt
cert_key = /ssl/domain(.)de.key

Apache Conf:
<VirtualHost *:8090>
ServerAdmin webmaster@authproxy
ServerName domain(.)de
ServerAlias domain(.)de
ErrorLog “/MySystem/logs/grafana-authproxy-error_log”
CustomLog “/MySystem/logs/grafana-authproxy-access_log” common
SSLEngine on
SSLCertificateKeyFile /ssl/domain(.)de.key
SSLCertificateFile /ssl/domain(.)de.crt

        <Proxy *>
            AuthType Basic
            AuthName GrafanaAuthProxy
            AuthBasicProvider file
            AuthUserFile /etc/apache2/grafana_htpasswd
            Require valid-user

            RewriteEngine On
            RewriteRule .* - [E=PROXY_USER:%{LA-U:REMOTE_USER},NS]
            RequestHeader set X-WEBAUTH-USER "%{PROXY_USER}e"
        </Proxy>

        RequestHeader unset Authorization

        SSLProxyEngine on
        ProxyRequests Off
        ProxyPass / https://domain.de:3000/
        ProxyPassReverse / https://domain.de:3000/

    </VirtualHost>

These (.) are of course normal “.”.
I hope you have a good suggestion what this can be.Thanks for your time :slight_smile: