Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Build nginx virtual host-- based on domain name, port and IP

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

There are three types of virtual hosts supported by nginx

1. Virtual host based on domain name

2. Virtual host based on IP

3. Port-based virtual host

I. Construction based on domain name

1. Compile and install nginx service

2. Configure DNS domain name resolution service

3. Configure virtual host

A. Create a self-test web page

[root@localhost named] # cd [root@localhost ~] # mkdir-p / var/www/html/kgc [root@localhost ~] # mkdir-p / var/www/html/accp [root@localhost ~] # ls / var/www/html/accp kgc [root@localhost ~] # cd / var/www/html/ [root@localhost html] # echo "this kgc web" > kgc/index.html [root@localhost html] # echo "this accp web" > accp/index.html

B. Edit the nginx.conf configuration file

Vim / usr/local/nginx/conf/nginx.conf include conf.d/*.conf; server {listen 80; server_name www.kgc.com; charset utf-8; access_log logs/www.kgc.com.access.log; location / {root / var/www/html/kgc; index index.html index.htm } error_page 500 502 503 504 / 50x.htl; location = / 50x.html {root html;}} server {listen 80; server_name www.accp.com; charset utf-8; access_log logs/www.accp.com.access.log Location / {root / var/www/html/accp; index index.html index.htm;} error_page 500 502 503 504 / 50x.html; location = / 50x.html {root html;}}

C. Overload service

Systemctl restart nginxnetstat-ntap | grep 80

D, access test

Www.kgc.comwww.accp.com

Second, based on port

A. Create a test page for another port

[root@localhost ~] # cd / var/www/html/ [root@localhost html] # echo "this is kgc 8080 web" > kgc/index.html

B. Edit the nginx.conf configuration file and modify only the listening address

Server {listen 192.168.109.137 server_name www.accp.com; charset utf-8; access_log logs/www.accp.com.access.log; location / {root / var/www/html/accp; index index.html index.htm;} error_page 500 502 503 504 / 50x.html Location = / 50x.html {root html;}} server {listen 192.168.109.137 server 8080; server_name www.accp.com; charset utf-8; access_log logs/www.accp8080.com.access.log; location / {root / var/www/html/accp8080 Index index.html index.htm;} error_page 500 502 503 504 / 50x.htl; location = / 50x.html {root html;}}

C. Reload nginx service

Systemctl restart nginxnetstat-ntap | grep 80

D, test the web page

Www.accp.comwww.accp.com8080

Third, based on IP

1. Modify the zone data configuration file in the web page configuration file

Vim / var/named/kgc.com.zonesystemctl restart named

2. Edit the configuration in nginx.conf and modify the ip address

Server {listen 192.168.109.137 server_name www.kgc.com; charset utf-8; access_log logs/www.kgc.com.access.log; location / {root / var/www/html/kgc; index index.html index.htm;} error_page 500 502 503 504 / 50x.html Location = / 50x.html {root html;}} server {listen 192.168.109.134 server 80; server_name www.accp.com; charset utf-8; access_log logs/www.accp.com.access.log; location / {root / var/www/html/accp Index index.html index.htm;} error_page 500 502 503 504 / 50x.htl; location = / 50x.html {root html;}}

C. Reload nginx service

Systemctl restart nginxnetstat-ntap | grep 80

D, test the web page

192.168.109.137192.168.109.134

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report