真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何在nginx中配置二級(jí)域名

今天就跟大家聊聊有關(guān)如何在nginx中配置二級(jí)域名,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

在黃州等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站 網(wǎng)站設(shè)計(jì)制作按需搭建網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),高端網(wǎng)站設(shè)計(jì),全網(wǎng)整合營(yíng)銷(xiāo)推廣,外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè),黃州網(wǎng)站建設(shè)費(fèi)用合理。

我的vps掛了三個(gè)服務(wù), 分別是:

  1. WordPress搭建的博客服務(wù), 運(yùn)行于8000端口, 訪問(wèn)方式 http://fangyuanxiaozhan.com:8000

  2. Gogs搭建的git服務(wù), 運(yùn)行于10080端口, 訪問(wèn)方式 http://fangyuanxiaozhan.com:10080

  3. Nextcloud搭建的網(wǎng)盤(pán)服務(wù), 運(yùn)行于8080端口, 訪問(wèn)方式 http://fangyuanxiaozhan.com:10080

我的需求:

  1. 1.訪問(wèn)博客服務(wù)時(shí), 直接輸入 http://fangyuanxiaozhan.com

  2. 訪問(wèn)git服務(wù)時(shí), 直接輸入 http://git.fangyuanxiaozhan.com

  3. 訪問(wèn)網(wǎng)盤(pán)服務(wù)時(shí), 直接輸入 http://cloud.fangyuanxiaozhan.com

實(shí)現(xiàn)的方法

1、到托管域名的網(wǎng)站, 添加DNS解析, 我的域名 fangyuanxiaozhan.com 托管在阿里云, 我的做法是登錄 https://dns.console.aliyun.com/#/dns/domainList , 添加二級(jí)記錄

如何在nginx中配置二級(jí)域名 

2、我使用的是centos7, nginx配置文件的默認(rèn)位置為 /etc/nginx/nginx.conf , 有意思的是, /etc/nginx/nginx.conf 內(nèi)引入了 配置文件夾 /etc/nginx/conf.d , 也就是我們可以把 /etc/nginx/nginx.conf 中的一些默認(rèn)配置注釋掉, 直接在文件夾 /etc/nginx/conf.d 中配置多個(gè)獨(dú)立的配置文件.

如何在nginx中配置二級(jí)域名 

/etc/nginx/nginx.conf 的配置

# For more information on configuration, see:
#  * Official English Documentation: http://nginx.org/en/docs/
#  * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
  worker_connections 1024;
}

http {
  log_format main '$remote_addr - $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for"';

  access_log /var/log/nginx/access.log main;

  sendfile      on;
  tcp_nopush     on;
  tcp_nodelay     on;
  keepalive_timeout  65;
  types_hash_max_size 2048;

  include       /etc/nginx/mime.types;
  default_type    application/octet-stream;

  include /etc/nginx/conf.d/*.conf;

}

注意上述配置文件的最后一行, include /etc/nginx/conf.d/*.conf; 保證了 /etc/nginx/conf.d/ 下,所有以.conf結(jié)尾的配置文件, 都會(huì)被主配置文件 nginx.conf 引入并生效

/etc/nginx/conf.d/ 下面需要新建三個(gè)文件

如何在nginx中配置二級(jí)域名 

blog.conf (實(shí)現(xiàn)8000端口映射到80端口, 不使用二級(jí)域名)

server { 
  listen 80;
  server_name fangyuanxiaozhan.com;

  location / {
    proxy_set_header  X-Real-IP $remote_addr;
    proxy_set_header  Host   $http_host;
    proxy_pass     http://0.0.0.0:8000;
  }
}

blog.conf實(shí)現(xiàn)了fangyuanxiaozhan.com:8000映射到 fangyuanxiaozhan.com

git.conf (實(shí)現(xiàn)10080端口映射到80端口, 使用二級(jí)域名 git )

server { 
  listen 80;
  server_name git.fangyuanxiaozhan.com;

  location / {
    proxy_set_header  X-Real-IP $remote_addr;
    proxy_set_header  Host   $http_host;
    proxy_pass     http://0.0.0.0:10080;
  }
}

git.conf實(shí)現(xiàn)了fangyuanxiaozhan.com:10080映射到 git.fangyuanxiaozhan.com

nc.conf (實(shí)現(xiàn)10080端口映射到80端口, 使用二級(jí)域名 cloud )

server { 
  listen 80;
  server_name cloud.fangyuanxiaozhan.com;

  location / {
    proxy_set_header  X-Real-IP $remote_addr;
    proxy_set_header  Host   $http_host;
    proxy_pass     http://0.0.0.0:8080;
  }
}

git.conf實(shí)現(xiàn)了fangyuanxiaozhan.com:8080映射到 cloud.fangyuanxiaozhan.com

重啟nginx使配置生效

關(guān)閉nginx

sudo $(which nginx) -s stop

開(kāi)啟nginx

sudo $(which nginx)

效果展示

如何在nginx中配置二級(jí)域名 

如何在nginx中配置二級(jí)域名 

如何在nginx中配置二級(jí)域名 

看完上述內(nèi)容,你們對(duì)如何在nginx中配置二級(jí)域名有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


分享名稱:如何在nginx中配置二級(jí)域名
文章起源:http://weahome.cn/article/gisigs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部