nginx配置二級(jí)域名的示例代碼
為了不讓域名fangyuanxiaozhan.com閑置, 作者又買了個(gè)國內(nèi)的虛擬主機(jī)(VPS)的ip為 111.230.254.173
, 用wordpress開了個(gè)博客網(wǎng)站, 由于vps的空間很大, 我就開了個(gè)私有網(wǎng)盤服務(wù), 由于日常開發(fā)需要用到git, 但又不想公開代碼, 我又開了個(gè)私有g(shù)it服務(wù)
我的vps掛了三個(gè)服務(wù), 分別是:
- WordPress搭建的博客服務(wù), 運(yùn)行于8000端口, 訪問方式 http://fangyuanxiaozhan.com:8000
- Gogs搭建的git服務(wù), 運(yùn)行于10080端口, 訪問方式 http://fangyuanxiaozhan.com:10080
- Nextcloud搭建的網(wǎng)盤服務(wù), 運(yùn)行于8080端口, 訪問方式 http://fangyuanxiaozhan.com:10080
我的需求:
- 1.訪問博客服務(wù)時(shí), 直接輸入 http://fangyuanxiaozhan.com
- 訪問git服務(wù)時(shí), 直接輸入 http://git.fangyuanxiaozhan.com
- 訪問網(wǎng)盤服務(wù)時(shí), 直接輸入 http://cloud.fangyuanxiaozhan.com
實(shí)現(xiàn)的方法
1、到托管域名的網(wǎng)站, 添加DNS解析, 我的域名 fangyuanxiaozhan.com 托管在阿里云, 我的做法是登錄 https://dns.console.aliyun.com/#/dns/domainList , 添加二級(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ú)立的配置文件.
/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è)文件
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
開啟nginx
sudo $(which nginx)
效果展示
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Centos7安裝、卸載nginx及配置,配置成系統(tǒng)服務(wù)方式(一步到位)
這篇文章主要介紹了Centos7安裝、卸載nginx及配置,配置成系統(tǒng)服務(wù)方式(一步到位),具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-12-12一文弄懂Nginx的location匹配的實(shí)現(xiàn)
這篇文章主要介紹了一文弄懂Nginx的location匹配的實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-02-02nginx could not build the server_names_hash 解決方法
服務(wù)器名字的hash表是由指令 server_names_hash_max_size 和 server_names_hash_bucket_size所控制的。2011-03-03Nginx中try_files指令的實(shí)現(xiàn)示例
try_files是Nginx配置中的一個(gè)指令,用于檢查文件是否存在,并根據(jù)存在情況處理請(qǐng)求,本文就來介紹一下Nginx中try_files指令的實(shí)現(xiàn)示例,感興趣的可以了解一下2024-10-10結(jié)合 Nginx 將 DoNetCore 部署到 阿里云的安裝配置方法
這篇文章主要介紹了結(jié)合 Nginx 將 DoNetCore 部署到 阿里云的方法 ,需要的朋友可以參考下2018-10-10nginx對(duì)http請(qǐng)求處理的各個(gè)階段詳析
這篇文章主要給大家介紹了關(guān)于nginx對(duì)http請(qǐng)求處理的各個(gè)階段分析的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-11-11nginx?某些url只能由特定ip訪問的實(shí)現(xiàn)
在Nginx中針對(duì)某些URL只允許特定IP地址訪問,本文就來介紹一下如何實(shí)現(xiàn),具有一定的參考價(jià)值,感興趣的可以了解一下2023-09-09