Created
May 25, 2013 12:12
-
-
Save fnobi/5648886 to your computer and use it in GitHub Desktop.
nginx + foreverで、Webアプリ管理らくらく ref: http://qiita.com/items/6a1688e74da3789025da
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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