Skip to content

Instantly share code, notes, and snippets.

@fnobi
Created May 25, 2013 12:12
Show Gist options
  • Select an option

  • Save fnobi/5648886 to your computer and use it in GitHub Desktop.

Select an option

Save fnobi/5648886 to your computer and use it in GitHub Desktop.
nginx + foreverで、Webアプリ管理らくらく ref: http://qiita.com/items/6a1688e74da3789025da
location / {
proxy_pass http://hogehoge;
allow all;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment