Nginx的下载安装这里就不赘述了, 在Nginx的配置文件nginx.conf 或者 自定义的配置文件中加入如下配置。
server {
listen 80;
server_name 39.99.247.19;
access_log /data/wwwlogs/access_nginx.log combined;
root /data/wwwroot/default;
index index.html index.htm index.php;
# ~ :波浪线表示开启正则匹配并区分大小写,后面跟的是正则表达式
location ~ .*.(gif|jpg|jpeg|png)$ {
root /opt/image/; 这里的root是固定,并不是图片在root目录下, /opt/image/才是图片所在的路径。
}
}
保存退出;然后 nginx -s reload 重新加载配置文件, 在浏览器输入地址 39.99.247.19:80/图片名称+后缀 返回图片说明配置成功