一个域名通过nginx映射多个网站

一.前提要求

1.拥有一个腾讯云云服务器

2.买有一个域名

3.域名通过备案(一般需要30天左右备案时间)

二.实现例子

1.博客网站对应blog.abc.com

2.项目网站对应demo.abc.com

3.个人简历对应www.abc.com

三.实现步骤

先通过A记录申请三个二级域名,分别为上面的三个。并且映射到你的云服务器公有IP。

通过Nginx进行配置三个serve

server {
listen 80;
server_name blog.abc.com;
root /usr/share/Nginx/blog;

# Load configuration files for the default server block.
include /etc/Nginx/default.d/*.conf;

location / {
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

 

server {
listen 80;
server_name demo.abc.com;
root /usr/share/Nginx/demo;

# Load configuration files for the default server block.
include /etc/Nginx/default.d/*.conf;

location / {
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

 

server {
listen 80;
server_name www.abc.com;
root /usr/share/Nginx/www;

# Load configuration files for the default server block.
include /etc/Nginx/default.d/*.conf;

location / {
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

最后配置完成后重启一哈NginxNginx -s reload)即可访问。

相关文章

Nginx (engine x) 是一个高性能的HTTP和反向代理服务,也是一...
本地项目配置 1 复制 luffy/settings/dev.py为prop.py 修改l...
nginx不仅可以隐藏版本信息,还支持自定义web服务器信息 先看...
一 、此次漏洞分析 1 nginx HTTP/2漏洞 [nginx-announce] ng...
###进入nginx 目录cd /usr/local/nginx###递归显示 2 级目录...
在cmd命令窗口输入下面命令进行查看 tasklist /fi "ima...