Skip to content

Instantly share code, notes, and snippets.

@ticoombs
Last active July 10, 2016 06:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ticoombs/a2d4184a7c70d416d25e to your computer and use it in GitHub Desktop.
Nginx example for isso to be imported to your server block.
location /isso {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header X-Script-Name /isso;
proxy_set_header X-Forwarded-Proto $scheme;
#proxy_pass http://unix:/tmp/isso.sock;
proxy_pass http://localhost:8095;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment