Skip to content

Instantly share code, notes, and snippets.

View woorim960's full-sized avatar
🌍
I Love Coding...

박우림 woorim960

🌍
I Love Coding...
View GitHub Profile
@woorim960
woorim960 / loadbalancer_with_NGINX.md
Last active July 21, 2022 20:26
NGINX를 로드밸런서로 활용하는 법 with.NodeJS

Nginx를 활용한 로드밸런싱 구현

  1. nginx.conf 확인

파일 위치 : (Ubuntu 기준) /etc/nginx/nginx.conf

http {
    ...
    include /etc/nginx/sites-enabled/*;
}
@woorim960
woorim960 / how_to_set_https_by_using_nginx.md
Created January 9, 2022 02:50
Nginx를 이용하여 https 적용하는 법

Nginx 설치

# Nginx 설치
$ sudo apt install nginx

# Nginx 실행
$ sudo service nginx start

이로써, Nginx 설치가 끝났다.