Skip to content

Instantly share code, notes, and snippets.

@billmeyer
Last active January 12, 2021 20:22
Show Gist options
  • Save billmeyer/6fff83337d5655c3087306e377e91080 to your computer and use it in GitHub Desktop.
Save billmeyer/6fff83337d5655c3087306e377e91080 to your computer and use it in GitHub Desktop.
Configure Grafana Server to use a Proxy Server

Configure Grafana Server to use a Proxy Server

  1. Add these lines to /etc/default/grafana-server:

     HTTPS_PROXY=http://<username>:<password>@<ip>:<port>/
     HTTP_PROXY=http://<username>:<password>@<ip>:<port>/
     NO_PROXY=localhost,127.0.0.0/8,::1,<other ip/networks to ignore>
    
  2. Restart the grafana server instance to take effect:

     sudo systemctl restart grafana-server
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment