nginx 다 중 도 메 인 이름과 IP 80 포트 설정

1105 단어 nginx
vi /etc/nginx/nginx.conf
안에 이 두 마디 가 있다.
    include /etc/nginx/conf.d/*.conf;     include /etc/nginx/sites-enabled/*;
그래서 우 리 는 이 폴 더 아래 에 다 중 사이트 프로필 을 새로 만 들 었 습 니 다.
/etc/nginx/sites-enabled
여기에 기본 default 파일 이 있 습 니 다. 삭제!
a1.conf
server  
      {
          listen       80;     
          server_name  www.a1.com;     
          index index.html index.htm index.php;#              
       root  /var/www/a1;#           


	location / {

	    index  index.html index.htm index.php; 
	    if (-f $request_filename/index.html){
	    rewrite (.*) $1/index.html break;
	    }
	    if (-f $request_filename/index.php){
	    rewrite (.*) $1/index.php;
	    }
	    if (!-f $request_filename){
	    rewrite (.*) /index.php;
	    }
	}

	location ~ \.php$ {
			fastcgi_pass 127.0.0.1:9000;
			fastcgi_index index.php;
			include fastcgi_params;
	}
     }


a2. conf 는 도 메 인 이름 만 a2 로 바 꿉 니 다.
service nginx stop
service nginx start
OK. 시동 걸 어.
(주로 default 이 파일 을 삭제 합 니 다. 어디 에 제한 이 있 는 것 같 습 니 다. 마지막 으로 로 컬 바 인 딩 에서 hosts 를 기억 하 십시오)

좋은 웹페이지 즐겨찾기