我目前有一个包含多条路由的服务器块,我正在尝试让 nginx 加载一份 report.html 文件。
我会把什么放进去
location = /report.html {
(what goes in here)
}
让我的网站example.com/report.html
从我的目录加载/var/log/report.html
答案1
location = /report.html {
alias /var/log/report.html;
}
我目前有一个包含多条路由的服务器块,我正在尝试让 nginx 加载一份 report.html 文件。
我会把什么放进去
location = /report.html {
(what goes in here)
}
让我的网站example.com/report.html
从我的目录加载/var/log/report.html
location = /report.html {
alias /var/log/report.html;
}