Linux: nginx 서버 구축

1253 단어
nginx 사이트 서버 구축
설치 nginx
yum install nginx

시작 서비스
         
systemctl start nginx

브 라 우 저 테스트 통과 하기
     localhost

       httpd    
     

vim /usr/share/nginx/html/index.html 

nginx 프로필 수정
vim /etc/nginx/nginx.conf
       }    :include vhost/*.conf;

새 vhost 디 렉 터 리
 /etc/nginx     vhost  ,      www.test.conf www.hr.conf  
      ,      。
#vim www.test.conf
server{
        listen 192.168.75.131:80;
        server_name www.test.com;
        location / {
                root /data/test;
                index index.html;
}
}
#vim www.hr.conf
server{
        listen 192.168.75.131:80;
        server_name www.hr.com;
        location / {
                root /data/hr;
                index index.html;
}
}

새 / data 디 렉 터 리
       test hr   /data/   

도 메 인 이름 등록
    , /etc/hosts     :
192.168.75.128 www.test.com www.hr.com

서비스 다시 시작
         :systemctl restart nginx

방화벽 을 닫다
     :systemctl status firewalld.service
  selinux    :setenforce 0

                   

설 정 된 도 메 인 이름 에 접근

좋은 웹페이지 즐겨찾기