一、配置nginx安装目录下的/conf/reverse-proxy.conf文件
server
{
listen 80;
listen 443 ssl;
.............
.............
location / {
.............
.............
}
location ~* \.(txt)$ {
root /home/.............;
}
location ~* \.(key)$ {
root /home/.............;
}
location ~* \.(crt)$ {
root /home/.............;
}
location ~* \.(png)$ {
root /home/.............;
}
location ~* \.(mp4)$ {
root /data/.............;
}
}
二、访问时直接使用域名+文件名就可以,配置好的访问路径无需拼接
已配置mp4访问路径为:
location ~* \.(mp4)$ {
root /data/MP4File;
}
访问路径:http://zhihf.com/zhihf.mp4