Skip to content

Instantly share code, notes, and snippets.

@jordanorelli
Created March 25, 2017 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jordanorelli/7679f6aa9a252f40619629bfc0af9bff to your computer and use it in GitHub Desktop.
Save jordanorelli/7679f6aa9a252f40619629bfc0af9bff to your computer and use it in GitHub Desktop.
server {
listen 9500;
server_name beta.rumblemonkey.com;
# This header enables the Cross-site scripting (XSS) filter
# add_header X-XSS-Protection "1; mode=block";
ssl off;
location / {
proxy_pass http://unix:/tmp/$http_rmsocket:/;
proxy_set_header Host $host;
proxy_set_header Port $remote_addr;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment