Skip to content

Instantly share code, notes, and snippets.

@3l3n01
Forked from cescoffier/sonar.conf
Created May 24, 2017 05:03
Show Gist options
  • Save 3l3n01/299794c4f1c50dadb77b570d029c0fd1 to your computer and use it in GitHub Desktop.
Save 3l3n01/299794c4f1c50dadb77b570d029c0fd1 to your computer and use it in GitHub Desktop.
nginx server proxy for Sonar
server {
server_name sonar.dynamis-technologies.com;
location / {
proxy_pass http://localhost:12356;
proxy_set_header Host $host;
proxy_buffering off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment