poof/extras/nginx.conf

1server { 2 # .... replace with your server block 3 4 # poof notes - replace /poof and port:3027 with your own values 5 # this config is using the default values in the project 6 location /poof { 7 proxy_pass http://localhost:3027; 8 proxy_http_version 1.1; 9 proxy_set_header Upgrade $http_upgrade; 10 proxy_set_header Connection 'upgrade'; 11 proxy_set_header Host $host; 12 proxy_cache_bypass $http_upgrade; 13 } 14} 15 16