Example of how to configure multiple virtual hosts in nginx

Example of how to configure multiple virtual hosts in nginx

It is very convenient to configure virtual host vhost under nginx. Just add a server in the nginx configuration file nginx.conf

For example, I want to configure two virtual hosts, accessed through the domain names linux.com and linux2.com, and the corresponding directories are /usr/htdocs/linux and /usr/htdocs/linux2 respectively (this directory is where you put your development project files)

Because I installed a local virtual machine, I first added two redirects to the hosts file:

192.168.20.250 linux.com //192.168.20.250 is the IP address of my virtual machine, using bridge mode

192.168.20.250 linux2.com

Start configuring: Taking the configuration of linux.com as an example, configuring multiple virtual hosts is exactly the same process.

1. Find the nginx configuration file nginx.conf

Generally in the conf file under the nginx installation path

> Enter the conf directory and see many configuration files

Edit nginx.conf

Add a server{}, each server configuration corresponds to a virtual host vhost

server {
  listen 80; //Port 80 server_name linux.com; //Set the domain name #Directly enter the domain name to enter the directory and the default parsed file location / { 
    index index.html; 
    root /usr/htdocs/linux; //Enter linux.com directly to enter here, generally configure and parse the directory where php is located}

   #Parse .php file location ~ \.php$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /usr/htdocs/linux/$fastcgi_script_name; //The directory corresponding to the current virtual host include fastcgi_params;
  } 
}

Add in nginx.conf

Add the file index.php in the corresponding /usr/htdocs/linux for testing

Restart nginx: service nginx restart

After modifying the nginx configuration file, you need to restart nginx to take effect

Open the browser and enter the domain name to test:

OK, normal analysis!

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to configure nginx virtual hosts to access multiple websites on one server
  • Detailed explanation of how to configure virtual host vhost in nginx
  • Detailed explanation of the specific writing method of server_name in Nginx virtual host configuration
  • How to set up virtual hosts and specified access paths in Nginx
  • Nginx virtual host setting example (multiple website configuration)
  • Detailed steps for configuring virtual hosts in nginx

<<:  How to query data within a certain period of time with Vue front-end and Django back-end

>>:  A brief discussion on the calculation method of key_len in mysql explain

Recommend

Commonly used JavaScript array methods

Table of contents 1. filter() 2. forEach() 3. som...

Detailed explanation of the difference between $router and $route in Vue

We usually use routing in vue projects, and vue-r...

Analysis of 2 Token Reasons and Sample Code in Web Project Development

Table of contents question: There are 2 tokens in...

Web page creation for beginners: Learn to use HTML's hyperlink A tag

The hyperlink a tag represents a link point and i...

MySQL group query optimization method

MySQL handles GROUP BY and DISTINCT queries simil...

Detailed explanation of template tag usage (including summary of usage in Vue)

Table of contents 1. Template tag in HTML5 2. Pro...

Solve the 1251 error when establishing a connection between mysql and navicat

I reinstalled the computer and installed the late...

Vue implements QR code scanning function (with style)

need: Use vue to realize QR code scanning; Plugin...

js to achieve simple image drag effect

This article shares the specific code of js to ac...

Install Apple Mac OS X in VMWare12 Graphic Tutorial

1. Introduction: Because my friend wanted to lear...

Two ways to clear table data in MySQL and their differences

There are two ways to delete data in MySQL: Trunc...

Practical record of handling MySQL automatic shutdown problems

I recently helped someone with a project and the ...

Nginx/Httpd load balancing tomcat configuration tutorial

In the previous blog, we talked about using Nginx...

Vue uses mockjs to generate simulated data case details

Table of contents Install mockjs in your project ...

Practical record of Vue3 combined with TypeScript project development

Table of contents Overview 1. Compositon API 1. W...