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 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
Table of contents 1. filter() 2. forEach() 3. som...
We usually use routing in vue projects, and vue-r...
Table of contents question: There are 2 tokens in...
The hyperlink a tag represents a link point and i...
MySQL handles GROUP BY and DISTINCT queries simil...
Table of contents 1. Template tag in HTML5 2. Pro...
I reinstalled the computer and installed the late...
need: Use vue to realize QR code scanning; Plugin...
This article shares the specific code of js to ac...
1. Introduction: Because my friend wanted to lear...
There are two ways to delete data in MySQL: Trunc...
I recently helped someone with a project and the ...
In the previous blog, we talked about using Nginx...
Table of contents Install mockjs in your project ...
Table of contents Overview 1. Compositon API 1. W...