1、在Linux系统中下载nginx
这里介绍在ubuntu中下载nginx:
https://blog.csdn.net/qq_23832313/article/details/83578836
2、nginx配置图片访问路径
-
在主目录下的data目录下创建一个文件夹用来存放图片
-
赋予data目录和其子目录capture权限
-
进入/etc/nginx/找到nginx.conf
-
在nginx.conf中写入访问图片的路径
找到server{},在里面写入以下配置:
location /capture/(这里自定义映射路径) { alias /data/capture/;#这里是被上面映射的路径(此段话要删除) #proxy_temp_path /data/img/; #this is unnecessary autoindex on; }
-
在浏览器中输入:http://服务器ip:端口(在nginx.conf中的server模块下有)/capture/图片名称