当前位置:   article > 正文

阿里云CentOS 7.5 使用Nginx配置多个域名及转发_centos7.5 代理转发请求到另一个域名

centos7.5 代理转发请求到另一个域名


现有三个测试域名已经指向同一台服务器:

  1. www.testa.com,指向一个html静态页面
  2. www.testb.com,指向一个html静态页面
  3. gitlab.code.com, 代码管理服务,gitlab服务端口83

1.环境

CentOS 7.5已经安装好nginx和gitlab服务,其中nginx默认端口80, gitlab端口配置成83, 并且端口83已经加入阿里云安全组里面!

2.新建目录vhost存放conf文件

[root@iZ8vb2zp3hb2pskrfnjcrbZ nginx]# mkdir /etc/nginx/vhost
[root@iZ8vb2zp3hb2pskrfnjcrbZ nginx]# cd /etc/nginx/vhost
  • 1
  • 2

3.新建3个conf文件

# www.testa.com
[root@iZ8vb2zp3hb2pskrfnjcrbZ nginx]# vi vhost_testa.conf
server {
  listen 80;
  server_name www.testa.com testa.com;
  root /home/website/testa;

  location / {
    index index.html index.htm index.php;
  }
}

# www.testb.com
[root@iZ8vb2zp3hb2pskrfnjcrbZ nginx]# vi vhost_testb.conf
server {
  listen 80;
  server_name www.testb.com testb.com;
  root /home/website/testb;

  location / {
    index index.html index.htm index.php;
  }
}

# gitlab.code.com
[root@iZ8vb2zp3hb2pskrfnjcrbZ nginx]# vi vhost_gitlab.conf
server {
  listen 80;
  server_name gitlab.code.com;
  root /usr/share/nginx/html;
  index index.html index.htm index.php; #default index

  location / {
    proxy_pass http://localhost:83; #此处在作重定向,也作很多处理
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36

4.静态页面html配置路径

根据conf配置文件:

  1. testa --> /home/website/testa
  2. testb --> /home/website/testb

5.修改nginx配置默认加载3个conf文件

[root@iZ8vb2zp3hb2pskrfnjcrbZ vhost]# vi /etc/nginx/nginx.conf
...
http {
  ...
  # Load modular configuration files from the /etc/nginx/conf.d directory.
  # See http://nginx.org/en/docs/ngx_core_module.html#include
  # for more information.
  # include /etc/nginx/conf.d/*.conf;
  # 加上路径
  include /etc/nginx/vhost/*.conf; 
  ...
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

6.重新加载nginx配置

[root@iZ8vb2zp3hb2pskrfnjcrbZ vhost]# nginx -s reload
[root@iZ8vb2zp3hb2pskrfnjcrbZ vhost]# service nginx restart
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/726333
推荐阅读
相关标签
  

闽ICP备14008679号