Last active
May 24, 2017 05:03
-
-
Save cescoffier/c148a9da925e428a4a1d to your computer and use it in GitHub Desktop.
nginx server proxy for Sonar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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