Nginx vhost 다 중 도 메 인 이름 설정

7196 단어
방법 1: 여러 개의. conf 방법 (장점 은 유연 하고 단점 은 사이트 가 비교적 많이 설정 되 어 번 거 로 운 것)
여기 서 2 개의 사이트 (2 개의 도 메 인 이름) 를 설정 하 는 것 을 예 로 들 면 n 개의 사이트 가 상응 하 게 조정 할 수 있 습 니 다. 가설:
IP 주소: 192.168.1.100 도 메 인 이름 1 example 1. com / www / example 1 도 메 인 이름 2 example 2. com / www / example 2
 
nginx virtual hosting 의 기본 사고방식 과 절 차 는 다음 과 같 습 니 다.
2 개의 사이트 example 1. com, example 2. com 을 nginx 가 접근 할 수 있 는 디 렉 터 리 / www /
사이트 마다 nginx 프로필 example 1. com. conf, example 2. com. conf 를 만 들 고 설정 파일 을 / usr / local / nginx / vhosts / 에 넣 은 다음 / usr / local / nginx / nginx. conf 에 include 를 추가 하여 2 단계 로 만 든 프로필 을 모두 포함 합 니 다 (* 번호 로) nginx 를 다시 시작 합 니 다.
1. / usr / local / nginx / nginix. conf 파일 을 열 고 해당 위치 에 include 를 추가 하여 상기 2 개의 파일 을 포함 합 니 다.
user  www www;
worker_processes  1;
 
# main server error log
error_log      /usr/local/nginx/log/nginx/error.log ;
pid     /usr/local/nginx/nginx.pid;
 
events {
worker_connections  51200;
}
# main server config
http {
include       mime.types;
default_type  application/octet-stream;
log_format  main  ‘$remote_addr – $remote_user [$time_local] $request ‘
‘”$status” $body_bytes_sent “$http_referer” ‘
‘”$http_user_agent” “$http_x_forwarded_for”‘;
 
sendfile        on;
#tcp_nopush     on;
#keepalive_timeout  0;
keepalive_timeout  65;
gzip  on;
 
server {
listen         80;
server_name     _;
access_log      /usr/local/nginx/log/nginx/access.log main;
server_name_in_redirect  off;
location / {
root  /usr/share/nginx/html;
index index.html;
}
}
\ # 모든 가상 호스트 를 포함 하 는 프로필
include /usr/local/nginx/vhosts/*;
}
 
2. / usr / local / nginx 에서 vhosts 디 렉 터 리 를 만 듭 니 다.
mkdir /usr/local/nginx/vhosts

3. / usr / local / nginx / vhosts / 에 example 1. com. conf 라 는 파일 을 만 들 고 다음 내용 을 복사 합 니 다.
server {
        listen  80;
        server_name  example1.com www. example1.com;
 
        access_log  /www/access_ example1.log  main;
 
        location / {
            root   /www/example1.com;
            index  index.php index.html index.htm;
        }
 
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /usr/share/nginx/html;
        }
 
       # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ .php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /www/example1.com/$fastcgi_script_name;
            include        fastcgi_params;
        }
 
        location ~ /.ht {
            deny  all;
        }
}

3. / usr / local / nginx / vhosts / 에 example 2. com. conf 라 는 파일 을 만 들 고 다음 내용 을 복사 합 니 다.
server {
        listen  80;
        server_name  example2.com www. example2.com;
 
        access_log  /www/access_ example1.log  main;
 
        location / {
            root   /www/example2.com;
            index  index.php index.html index.htm;
        }
 
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /usr/share/nginx/html;
        }
 
       # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ .php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /www/example2.com/$fastcgi_script_name;
            include        fastcgi_params;
        }
 
        location ~ /.ht {
            deny  all;
        }
}

5. Nginx 재 부팅
 
/etc/init.d/nginx restart
 
   :      (     ,           ,      )
 

이 간단 한 방법 은 도 메 인 이름 마다 vhost. conf 프로필 을 만 드 는 것 보다 기 존 프로필 에 다음 과 같은 내용 만 추가 하면 됩 니 다.
 

\ # Replace this port with the right one for your requirements \ # 당신 의 요구 에 따라 이 포트 를 변경 합 니 다 listen       80;  #could also be 1.2.3.4: 80 도 1.2.3.4: 80 의 형식 일 수 있 습 니 다 \ # Multiple hostnames seperated by spaces.  Replace these as well. \ # 여러 호스트 이름 을 빈 칸 으로 구분 할 수 있 습 니 다. 물론 이 정보 도 당신 의 요구 에 따라 바 뀌 어야 합 니 다.server_name  star.yourdomain.com *.yourdomain.com http://www.*.yourdomain.com/; #Alternately: _ * #또는 사용 가능: *(구체 적 인 내용 은 본 위 키 의 다른 페이지 참조) root / PATH / TO / WEBROOT / $host;error_page  404              http://yourdomain.com/errors/404.html; access_log  logs/star.yourdomain.com.access.log; location / { root   /PATH/TO/WEBROOT/$host/; index  index.php; }
# serve static files directly

\ # 정적 파일 을 직접 지원 합 니 다 (설정 상 직접 지원 하 는 것 은 아 닙 니 다) location ~ * ^. +. (jpg | jpeg | gif | css | png | js | ico | html) ${access log        off; expires           30d;} location ~. php ${\ # By all means use a different server for the fcgi processes if you need to \ # 필요 하 다 면 서로 다른 FCGI 프로 세 스 에 서로 다른 서비스 정 보 를 설정 할 수 있 습 니 다 fastcgi pass   127.0.0.1:YOURFCGIPORTHERE; fastcgi_index  index.php; fastcgi_param  SCRIPT_FILENAME  /PATH/TO/WEBROOT/$host/$fastcgi_script_name; fastcgi_param  QUERY_STRING     $query_string; fastcgi_param  REQUEST_METHOD   $request_method; fastcgi_param  CONTENT_TYPE     $content_type; fastcgi_param  CONTENT_LENGTH   $content_length; fastcgi_intercept_errors on; } location ~ /.ht { deny  all; }
 

마지막 으로 다른 2 급 도 메 인 이름 과 일치 하 는 방법 을 첨부 합 니 다.
 

바 인 딩 도 메 인 이름 servername *.abcd.com; 호스트 이름 if ($host ~ * (. *) 를 가 져 옵 니 다. (. *) {set $domain $1;} 디 렉 터 리 루트 html / abc / $domain / 를 정의 합 니 다.location / { root html/abcd/$domain; index index.html index.php;
다음으로 전송:https://blog.51cto.com/xiugq/693448

좋은 웹페이지 즐겨찾기