nginx window

1447 단어
windows 아래 nginx 의 설치 및 사용 방법 입문
설정 (상세)
nginx windwo 다운로드 주소
nginx 설정, 브 라 우 저 필터
nginx. exe 디 렉 터 리 에서 명령 행 도 구 를 열 고 명령 으로 시작 / 닫 기 / 다시 시작 nginx (예 를 들 어 nginx 에서 찾 을 수 없 음)  ./nginx)
start nginx: 시작 nginx
nginx -s reload  :설정 수정 후 다시 불 러 오기 적용
nginx -s reopen  :로그 파일 nginx - t - c / path / to / nginx. conf 를 다시 엽 니 다. nginx 설정 파일 이 nginx: nginx - s stop 을 올 바 르 게 닫 았 는 지 테스트 합 니 다.  :빠 른 정지 nginx nginx - s quit  :전체 질서 있 는 정지 nginx 오류 가 발생 하면:
bash: nginx: command not found
Liux 명령 행 환경 에서 windows 명령 을 실 행 했 을 수도 있 습 니 다.
만약 당신 이 이전에 nginx - s reload 가 잘못 되 었 다 면, 시험 해 보 세 요. / nginx - s reload
windows 시스템 자체 명령 행 도구 로 실행 하거나
nginx 설정

worker_processes  1;


events {
    #      
    worker_connections  1024;
}


http {
	
    include       mime.types;
    default_type  application/octet-stream;


    sendfile        on;

    keepalive_timeout  65;
	

    server {
        listen       80;
        server_name  localhost;
	location / {
	    #       
	    root     E:/rjhc/block_chain_management/dist;
	}
		
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        #     
	location /v1/ {
	    proxy_set_header Host $host;
	    proxy_set_header X-Real-IP $remote_addr;
	    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	    proxy_pass http://127.0.0.1:8080/;
	}
    }

}

좋은 웹페이지 즐겨찾기