windows 아래 nginx 설치 및 사용

1752 단어
1. nginx 다운로드
http://nginx.org/en/download.html         안정 적 인 버 전 을 다운로드 하고 nginx / Windows - 1.1.2 를 예 로 들 어 직접 다운로드 합 니 다. nginx-1.12.2.zip
다운로드 후 압축 해제
2. nginx 시작
nginx 를 시작 하 는 여러 가지 방법 이 있 습 니 다.
(1) ngix. exe 를 직접 더 블 클릭 하고 더 블 클릭 한 후 검은색 창 이 스 쳐 지나 갑 니 다.
(2) cmd 명령 창 을 열 고 nginx 압축 해제 디 렉 터 리 로 전환 하여 명령 nginx. exe 또는 start nginx 를 입력 하고 차 로 돌아 가면 됩 니 다.
3. nginx 가 시작 되 었 는 지 확인
브 라 우 저 주소 표시 줄 에 직접 주 소 를 입력 하 십시오. http://localhost:80, Enter, welcome to nginx 페이지 로 시작 성공 설명
4. nginx. conf 설정 파일 을 수정 합 니 다. nginx 의 설정 파일 은 conf 디 렉 터 리 에 있 는 nginx. conf 입 니 다. 기본 설정 의 nginx 감청 포트 는 80 입 니 다.
 
  

upstream cms_server{
 server 127.0.0.1:8083;
}

server {
        listen       9090;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        #location / {
        #    root   html;
        #    index  index.html index.htm;
        #}
        
        #location ~ \.(js|css)$ {
        #    root   "D:/tmp/ueditor1_4_3_3-utf8-jsp/utf8-jsp";
        #    index  index.html;
        #}
        #      
        location /uploadfile/ {
            root   "D:/tools/apache-tomcat-7.0.103/"; #       uploadfile,      
            index  index.html;
        }
        #    
        location /cms1 {
            proxy_pass http://127.0.0.1:8083/cms/; #  /    cms/cms,    
        }
     #    
        location /cms {
            proxy_pass http://cms_server; #  upstream         ,         /,   /cms
        }
}

nginx -s reload  다시 시작

좋은 웹페이지 즐겨찾기