Skip to content

Instantly share code, notes, and snippets.

@yllan
Created February 5, 2013 07:55
Show Gist options
  • Save yllan/4712935 to your computer and use it in GitHub Desktop.
Save yllan/4712935 to your computer and use it in GitHub Desktop.
設定 nginx 使用 server sent event
location xxxx {
proxy_pass http://localhost:9000;
proxy_buffering off;
proxy_cache off;
proxy_redirect off;
proxy_set_header Connection '';
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment