ホームページ > 記事 > ウェブフロントエンド > Nginx でマルチサイト仮想ホストを構成する方法
この記事では、主に Nginx でマルチサイト vhost を構成する方法を紹介します。必要な方は参考にしてください。
Linux Nginx で異なるドメイン名を使用して異なるディレクトリにアクセスしたいとします。具体的な構成 以下のように、Web サイトのルート ディレクトリが /var/www/
1 に設定されていると仮定します。 /etc/nginx/nginx の下に 2 つの新しいディレクトリを作成します。 conf
/var/www/ushark.net /var/www/ushark.wang
3. etc/nginx/conf.d に 2 つの新しい 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; #主要是加入此行,如有则忽略 }
4. 以下の構成情報を 2 つのファイルにコピーします。server_name は次と一致します。 root、つまりディレクトリとドメイン名が1対1に対応しています!!
/etc/nginx/conf.d/ushark.net.conf /etc/nginx/conf.d/ushark.wang.conf
5. Nginxを再起動します
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; #} }
コアステップ!!!
systemctl restart nginx
将来すべての人に役立つことを願っています。
関連記事:
AngularJS で ui-route を使用して多層ネストされたルーティングを実装する (詳細なチュートリアル) vue で第 2 レベルのリンケージを実装する方法について jsを使用して倉庫番ゲームを実装する(詳細なチュートリアル)以上がNginx でマルチサイト仮想ホストを構成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。