nginx 시간 초과 설정, 도 메 인 이름, 포트, 링크 설정 에 따라 다른 점프 설정

4037 단어
Location 정규 표현 식 location 의 역할  location 명령 의 역할 은 사용자 가 요청 한 URI 에 따라 서로 다른 응용 프로그램 을 실행 하 는 것 입 니 다. 즉, 사용자 가 요청 한 사이트 URL 에 따라 일치 하고 성공 하면 관련 작업 을 하 는 것 입 니 다.
location   
 =        
  A             ,          。
^~     uri          ,      
~               ;
~*                
/     ,         ,         

 
도 메 인 이름 에 따라 다른 서 비 스 를 판단 합 니 다.
#      www.a393060727.com,      80,     data/www     
    server {
        listen       80;
        server_name  www.a393060727.com;
        location / {
            root   data/www;
            index  index.html index.htm;
        }
    }
    #      bbs.a393060727.com,      80,     data/bbs     
     server {
        listen       80;
        server_name  bbs.a393060727.com;
        location / {
            root   data/bbs;
            index  index.html index.htm;
        }
    }

 
포트 판단 점프 서비스
#      www.a393060727.com,      8080,     data/www     
     server {
        listen       8080;
        server_name  8080.a393060727.com;
        location / {
            root   data/www;
            index  index.html index.htm;
        }
    }
    
    #      www.a393060727.com,      8081,     data/bbs     
     server {
        listen       8081;
        server_name  8081.a393060727.com;
        location / {
            root   data/bbs;
            index  index.html index.htm;
        }
    }

 
링크 에 따라 주소 서버 를 이동 합 니 다.
###           
    server {
      ##      
        listen       80;
      ###      
        server_name  www.a393060727.com;
      ####   URL     /                   
        ###location / {
           ### root   html;
            ### index  index.html index.htm;
       ### }
     ###    /                    www.a393060727.com/userNamne
       ## location =/ {
         ###   root   html;
           ### index  index.html index.htm;
        ###}
        ###        tomcat_8080  
       location /tomcat_8080/ {
       ###        
            proxy_pass http://127.0.0.1:8080/;
            index  index.html index.htm;
        }
       ###        tomcat_8081  
         location /tomcat_8081/ {
       ###        
            proxy_pass http://127.0.0.1:8081/;
            index  index.html index.htm;
        }
    }

좋은 웹페이지 즐겨찾기