Nginx 도 메 인 설정

672 단어 Linux
cd / usr / local / nginx / conf 열기   Nginx 디 렉 터 리 에 설 치 된 설정 폴 더 열기
    vim nginx. conf 편집
server {
   
    listen       80; //    80 
   
    server_name  www.xxxx.cn; //   

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /home/xxxx/; //       
        index  index.html index.htm; //         
    }

    #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;
    
    }

}

    도 메 인 이름 이 많 으 면 여러 Service 를 설정 합 니 다. 복사 하면 OK

좋은 웹페이지 즐겨찾기