-
Git clone from korakrit-c/grafana-with-nginx-on-docker.git
git clone https://github.com/korakrit-c/grafana-with-nginx-on-docker.git
-
Make sure you can run docker-compose then starting it
docker-compose up -d
-
Create a new config file on "nginx-revers-storage/conf.d/"
cd nginx-revers-storage/conf.d/ nano grafana.conf
-
Add this config
upstream grafana_dashboard { server grafana_dashboard:3000; } server { listen 80; listen [::]:80; server_name grafana.local; location / { proxy_pass http://grafana_dashboard; } }
-
Restart nginx
docker exec nginx_reverse nginx -s reload
Read next

Run your Node.js application on a headless Raspberry Pi
Bogdan Covrig -

Configure nginx to host multiple subdomains
Santosh Venkatraman 🖖 -

How To Serve Node.js Applications with Nginx on a Raspberry
guim -

Web scraping tutorial with Real-Time Crawler
smusca -
Discussion