Advertisement
Guest User

Untitled

a guest
May 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #Client Proxy for blade app Node Web Application
  2. server {
  3. server_name app.blaydecorp.com;
  4. location / {
  5. proxy_pass http://127.0.0.1:2023;
  6. proxy_http_version 1.1;
  7. proxy_set_header Upgrade $http_upgrade;
  8. proxy_set_header Connection 'upgrade';
  9. proxy_set_header Host $host;
  10. proxy_cache_bypass $http_upgrade;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement