Skip to content

Instantly share code, notes, and snippets.

@bergquist
Created September 12, 2016 09:32
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bergquist/f19b3db2ea9a2ce71400e6e8bab24ba0 to your computer and use it in GitHub Desktop.
Save bergquist/f19b3db2ea9a2ce71400e6e8bab24ba0 to your computer and use it in GitHub Desktop.
Grafana nginx config
[server]
root_url = %(protocol)s://%(domain)s:/grafana
server {
listen 80;
root /usr/share/nginx/www;
index index.html index.htm;
location /grafana/ {
proxy_pass http://localhost:3000/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment