Skip to content

Instantly share code, notes, and snippets.

@cescoffier
Last active May 24, 2017 05:03
Show Gist options
  • Save cescoffier/c148a9da925e428a4a1d to your computer and use it in GitHub Desktop.
Save cescoffier/c148a9da925e428a4a1d 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