Nginx配置图片服务器
# 配置图片服务器(读取本地图片)
修改配置文件nginx.conf
,新增如下配置
server {
listen 11111;
server_name localhost;
location / {
# 图片存储目录,可以多级存储访问
root /root/pic/;
# 日志
access_log /root/pic/images.log;
}
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
nginx -s reload
重新加载nginx配置
- 验证
在/root/pic
目录下存在123.png
图片
[root@test11 pic]# pwd
/root/pic
[root@test11 pic]# ll
总用量 316K
-rwxrwxrwx 1 root root 309K 12月 20 21:16 123.png
-rw-r--r-- 1 root root 3.6K 12月 20 21:57 images.log
drwxr-xr-x 2 root root 21 12月 20 21:21 test
1
2
3
4
5
6
7
2
3
4
5
6
7
网页访问即可查看图片
上次更新: 2023/03/10, 16:49:38