赞
踩
如果需要将资源代理到不同的目录下,则在nginx.conf中的server节点下进行如下配置:
- location /image {
- root /opt/cache;
- }
-
- location vedio {
- root /opt/cache;
- }
修改后,重新加载nginx配置即可,nginx部分命令如下:
- # 检查配置
- nginx -t
- # 重载配置
- nginx -s reload
- # 关闭
- nginx -s quit
- # 启动
- nginx -s start
在server中添加如下配置(示例listen端口为80)
- location ~ /video/.*\.(mp4)?$ {
- expires -1;
- # 匹配结果示例:opt/cache/video/demo.mp4
- root /opt/cache;
- }
访问:localhost/video/demo.mp4即可访问
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。