nginx代理网站子目录到本地目录

使用nginx的alias即可,例如下边的配置将子目录static_web代理到/www/wwwroot/bg.ctftools.com路径,访问http://xxx.xx/static_web/index.html即可达/www/wwwroot/bg.ctftools.com/index.html

1
2
3
4
5
location ^~ /static_web {
alias /www/wwwroot/bg.ctftools.com;
index index.html;
try_files $uri $uri/ /static_web/index.html;
}

nginx代理网站子目录到本地目录
https://blog.ctftools.com/2020/11/post251/
作者
Dr3@m
发布于
2020年11月12日
许可协议