首頁 > web前端 > js教程 > 主體

Nginx 設定多站點vhost 實例分享

小云云
發布: 2018-01-09 09:21:11
原創
1428 人瀏覽過

本文主要介紹了Nginx 設定多站點vhost 的方法,需要的朋友可以參考下,希望能幫助大家。

假設你想在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與root保持一致即目錄和網域一一對應!! !

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 設定nodejs 代理伺服器(mac 環境)

NGINX 設定SSL 雙向認證

nginx 設定問題

#

以上是Nginx 設定多站點vhost 實例分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板