Skip to content

Grafana auto login

The solution described here works for me.

I did the following on the internal host where Grafana is installed:

  • Configured Apache (on port 80) as reverse proxy to Grafana (on port 3000)
  • Setup the virtualhost to add/set the required headers to login automatically as user admin

Relevant section from /etc/grafana/grafana.ini:

[auth.proxy]
enabled = true
;header_name = X-WEBAUTH-USER
;header_property = username
auto_sign_up = false

Apache config extract (you will need to enable mod_proxy, mod_proxy_http and mod_headers for this to work):

<VirtualHost *:80>
ProxyPreserveHost On
ProxyRequests Off
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
RequestHeader set "X-WEBAUTH-USER" "admin"
</VirtualHost>

On a separate Apache instance exposed to more networks I did the following:

  • Configured Apache as reverse proxy to the internal instance
  • Restricted access from specific IP addresses
  • Setup a rule to redirect requests to the root of the website (and only those) to a specific dashboard

This is how the Apache config looks like (requires mod_proxy, mod_proxy_http and mod_alias; IP addresses, host names etc. changed)

<VirtualHost *:80>
ServerName sub.example.org
ServerAlias www.sub.example.org
<Location />
Require ip 192.0.2.0/24
Require ip 203.0.113.0/24
Require ip 2001:0db8:85a4::/64
Require ip 2001:0db8:85a5::/64
RedirectMatch ^/$ /dashboard/db/mydashboard
</Location>
ProxyPreserveHost On
ProxyRequests Off
ProxyPass / http://[2001:0db8:85a3::aaaa:8a2e:0370:7334]/
ProxyPassReverse / http://[2001:0db8:85a3::aaaa:8a2e:0370:7334]/
</VirtualHost>

Using a public IPv6 address on the internal host allows the whole thing to work with just a few firewall rules, without the need to mess with NAT or a VPN.
  • Twitter
  • Bookmark Grafana auto login at del.icio.us
  • Facebook
  • Google Bookmarks
  • FriendFeed
  • Digg Grafana auto login
  • Mixx Grafana auto login
  • Bloglines Grafana auto login
  • Technorati Grafana auto login
  • Fark this: Grafana auto login
  • Bookmark Grafana auto login at YahooMyWeb
  • Bookmark Grafana auto login at Furl.net
  • Bookmark Grafana auto login at reddit.com
  • Bookmark Grafana auto login at blinklist.com
  • Bookmark Grafana auto login at Spurl.net
  • Bookmark Grafana auto login at NewsVine
  • Bookmark Grafana auto login at Simpy.com
  • Bookmark Grafana auto login at blogmarks
  • Bookmark Grafana auto login with wists
  • wong it!
  • Bookmark using any bookmark manager!
  • Stumble It!
  • Print this article!
  • E-mail this story to a friend!
  • Identi.ca

The solution to all "favicon" questions (favicon generator, analyzer and more)

This website is a really useful resource: https://realfavicongenerator.net/

  • Twitter
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at del.icio.us
  • Facebook
  • Google Bookmarks
  • FriendFeed
  • Digg The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more)
  • Mixx The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more)
  • Bloglines The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more)
  • Technorati The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more)
  • Fark this: The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more)
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at YahooMyWeb
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at Furl.net
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at reddit.com
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at blinklist.com
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at Spurl.net
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at NewsVine
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at Simpy.com
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) at blogmarks
  • Bookmark The solution to all &quot;favicon&quot; questions (favicon generator, analyzer and more) with wists
  • wong it!
  • Bookmark using any bookmark manager!
  • Stumble It!
  • Print this article!
  • E-mail this story to a friend!
  • Identi.ca