coTurn performance upgrade
TURN relay server performance: load balance and network optimization 이번 포스트는 위 사이트의 내용을 구글 번역기를 통해서 정리해둔 내용입니다. TURN

sudo apt update
sudo apt upgrade
불필요한 패키지 삭제
sudo apt autoremove
sudo apt install nginx
제거할 경우
sudo apt remove nginx
sudo service start nginx
sudo service status nginx
systemctl status nginx.service
sudo dpkg -l nginx
nginx -v
sudo find / -name nginx.conf
nginx.conf: nginx가 동작해야 할 방식을 설정 값을 통해 지정, root 권한만 수정이 가능하다
sudo vim nginx.conf
netstat -lntp
80번 포트가 리스닝되고 있으면 실행된 상태이다.
만약 netstat이 없다면
apt install net-tools