Sufyan

Azubaa NGINX Conf

Mar 10th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.30 KB | None | 0 0
  1. server {
  2.   listen 80;
  3.   server_name *.azubaa.in;
  4.   location / {
  5.     proxy_pass http://localhost:8640;
  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. }
Add Comment
Please, Sign In to add comment