nodejs vhost를 쓰다가, hexo로 tech블로그 하면서, vhost로는 조금 어려워질거 같아서
apache2 보다 조금 가볍다는 nginx를 깔았다.
그리고 내가 까먹기 전에 메모하자.
/etc/nginx/conf.d/nginx.conf
를 고치면 덴다.
server {
listen 80;
server_name c2w2m2.com;
location /{
proxy_pass http://localhost:XXXX;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection ‘upgrade’;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
꼴로 고치면덴다