aboutsummaryrefslogtreecommitdiffstats
path: root/roles/grafana/templates/grafana.conf.nginx.j2
blob: c0f926c98d11f6d51e1b87e1f4e48b98395626a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
server {
	listen {{ grafana_port_out }};
	root /usr/share/nginx/html;
	index index.html index.htm;

	location / {
		proxy_pass http://127.0.0.1:{{ grafana_port }}/;
	}
}
remember that computers suck.