Profile

머리정리하는곳

c2w2m2

nginx Virtual host

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;

}

}


꼴로 고치면덴다

'Today' 카테고리의 다른 글

  (1) 2018.05.26
hugo  (0) 2018.05.16
Tech blog  (0) 2018.05.16
ㅁㄴㅇㄹ  (0) 2018.05.15
Defcon2018  (1) 2018.05.14