We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f08ee8 commit cd57269Copy full SHA for cd57269
nginx/Dockerfile
@@ -0,0 +1,2 @@
1
+FROM tobi312/rpi-nginx
2
+ADD ./nginx.conf /etc/nginx/nginx.conf
nginx/nginx.conf
@@ -0,0 +1,18 @@
+# author Jan Van den Audenaerde
+# creation date 2018-11-11
3
+# http://docs.grafana.org/installation/behind_proxy/
4
+
5
+events {}
6
7
+http {
8
+ server {
9
+ listen 80;
10
+ listen 443 ssl;
11
+ root /usr/share/nginx/www;
12
+ index index.html index.htm;
13
14
+ location / {
15
+ proxy_pass http://grafana:3000;
16
+ }
17
18
+}
0 commit comments