最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Nginx泛解析的匹配域名绑定到子目录配置的例子
时间:2022-06-30 18:29:48 编辑:袖梨 来源:一聚教程网
网站的目录结构为:
# tree /home/wwwroot/111com.net
/home/wwwroot/111com.net
├── blog
│ └── index.html
└── file
└── index.html
/home/wwwroot/111com.net为nginx的安装目录下默认的存放源代码的路径。
blog为博客程序源代码路径
file为附件路径
把相应程序放入上面的路径通过
http://blog.111com.net 访问博客
http://file.111com.net 访问附件
其它二级域名类推。
方法一:
server {
listen 80;
server_name ~^(?
access_log /data/wwwlogs/111com.net_nginx.log combined;
index index.html index.htm index.php;
root /home/wwwroot/111com.net/$subdomain/;
...
}
方法二:
server {
listen 80;
server_name *.111com.net;
access_log /home/wwwlogs/111com.net.log combined;
index index.html index.htm index.php;
if ($host ~* ^([^.]+).([^.]+.[^.]+)$) {
set $subdomain $1;
set $domain $2;
}
location / {
root /home/wwwroot/111com.net/$subdomain/;
index index.php index.html index.htm;
}
...
}
``
相关文章
- 企查查官网-企业查询入口-企查查官网-查企业信息 03-13
- 亿万光年预约开启-亿万光年手游官网入口上线 03-13
- Jmc禁漫永久入口地址怎么进-JMC官网最新入口与在线阅读指南 03-13
- 哔咔哔咔漫画入口安卓安装包-哔咔哔咔漫画官方入口最新版本 03-13
- 夸克AI搜索网页版官方入口-夸克AI搜索官网一键直达 03-13
- 一耽女孩漫画app最新版本下载-一耽女孩官方正版安装包下载地址 03-13