Skip to content

Instantly share code, notes, and snippets.

@yukidarake
Created June 2, 2014 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yukidarake/e6ad7f7aa4e632191d65 to your computer and use it in GitHub Desktop.
Save yukidarake/e6ad7f7aa4e632191d65 to your computer and use it in GitHub Desktop.
nginxをリバースプロキシにする
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream nap {
server 127.0.0.1:8080;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://nap;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment