Infra Structure/Nginx
[Nginx] 윈도우 시작/종료
하 선생
2021. 6. 23. 10:35
설치디렉토리로 이동
1.시작
> nginx
2.종료
> nginx -s stop
3.재시작
> nginx -s reload
-----------
루트디렉토리 수정
- conf 디렉토리내의 nginx.conf 설정파일
location / {
#root html;
root "D:\html";
index index.html index.htm;
}