Nginx 다 중 사이트 vhost 설정 방법

3051 단어
Linux Nginx 에서 서로 다른 도 메 인 이름 으로 다른 디 렉 터 리 에 접근 하려 면 여러 개의 vhost 를 설정 해 야 합 니 다. 구체 적 으로 설정 하면 다음 과 같 습 니 다. 사이트 루트 디 렉 터 리 가 / var / www / 로 설정 되 어 있다 고 가정 합 니 다.
1. / var / www / 아래 에 두 개의 디 렉 터 리 를 새로 만 듭 니 다.

/var/www/ushark.net
/var/www/ushark.wang

2. 편집 / etc / nginx / nginx. conf

http {
  include    /etc/nginx/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"';
  access_log /var/log/nginx/access.log main;
  sendfile    on;
  #tcp_nopush   on;
  keepalive_timeout 65;
  #gzip on;
  include /etc/nginx/conf.d/*.conf;   #       ,     
}

3. / etc / nginx / conf. d 에서 두 개의 conf 파일 을 새로 만 듭 니 다.

/etc/nginx/conf.d/ushark.net.conf
/etc/nginx/conf.d/ushark.wang.conf

4. 다음 설정 정 보 를 두 파일 에 복사 합 니 다. 빨간색 부분 만 수정 하면 됩 니 다!!server_name 와 루트 가 일치 하면 디 렉 터 리 와 도 메 인 이름 이 일일이 대응 합 니 다!!

server {
  listen    80;
  server_name  www.ushark.net;
  #charset koi8-r;
  #access_log /var/log/nginx/host.access.log main;
  root  /var/www/ushark.net/;
  if (!-e $request_filename){   # rewrite         
      rewrite ^/(.*) /index.php last; 
  } 
  location / {
    index index.php 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  /var/www/ushark.net/;
  }
  # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  #
  #location ~ \.php$ {
  #  proxy_pass  http://127.0.0.1;
  #}
  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  #
  location ~* \.php$ {
    fastcgi_index  index.php;
    fastcgi_pass  127.0.0.1:9000;
    include      fastcgi_params;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    fastcgi_param  SCRIPT_NAME    $fastcgi_script_name;
  }
  # deny access to .htaccess files, if Apache's document root
  # concurs with nginx's one
  #
  #location ~ /\.ht {
  #  deny all;
  #}
}

5. Nginx 재 부팅

systemctl restart nginx

6, 편집 / etc / hosts!!!핵심 절차!!!

[root@bogon ~]# vi 127.0.0.1    localhost.localdomain localhost
::1       localhost6.localdomain6 localhost6
127.0.0.1    www.ushark.net
127.0.0.1    www.ushark.wang

총결산
위 에서 말 한 것 은 소 편 이 여러분 에 게 소개 한 Nginx 가 다 중 사이트 vhost 를 설정 하 는 방법 입 니 다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다. 궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요. 소 편 은 제때에 답 해 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기