nginx 작은 예 - 정적 자원 참조

895 단어 nginx
nginx 정적 자원 참조 방식.
설정 한 nginx 에 연결 할 서버 주소, 포트 에 접근 합 니 다.
   동료 들 의 디 버 깅 에 따라 windows 에서 설정 합 니 다.
  D:\market2\mark2\src\main\webapp\static;
여기
  D:/market2/mark2/src/main/webapp/static;  
 
 server {
        listen       8010;     //     nginx    
        server_name  10.96.88.65;	//nginx      

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root D:\market2\mark2\src\main\webapp\static;		//         
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }

좋은 웹페이지 즐겨찾기