01. 설치 및 기본 설정

NGINX 설치 및 파일 경로

패키지 설치

$ sudo apt-get install nginx

주요 파일/디렉토리 위치

  • DocumentRoot
/var/www/html
  • 설정 파일
/etc/nginx
  • 로그 파일
/var/log/nginx

NGINX 데몬 실행 및 확인

NGINX 시작, 종료 및 재시작

  • NGINX 시작
$ sudo systemctl start nginx
  • NGINX 종료
$ sudo systemctl stop nginx
  • NGINX 재시작
$ sudo systemctl restart nginx

NGINX 구동 여부 확인

$ sudo systemctl status nginx
 nginx.service - A high performance web server and a reverse proxy server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: active (running) since Sun 2017-01-08 18:04:44 KST; 54min ago
 Main PID: 3079 (nginx)
   CGroup: /system.slice/nginx.service
           ├─3079 nginx: master process /usr/sbin/nginx -g daemon on; master_process on
           └─3080 nginx: worker process

최종 수정일시: 2019-02-08 15:02

blog comments powered by Disqus