首页 > Python资料 博客日记

nginx-图片模块

2024-03-12 01:00:13Python资料围观118

Python资料网推荐nginx-图片模块这篇文章给大家,欢迎收藏Python资料网享受知识的乐趣

./configure --with-http_image_filter_module
location / {
  root   html;
  index  index.html index.htm;

  if ($arg_w = "") {
   set $arg_w '-';
  }
  if ($arg_h = "") {
   set $arg_h '-';
  }
  image_filter resize $arg_w $arg_h;
  image_filter_jpeg_quality 95;
}

访问: 123456.jpeg?w=200&h=200


版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐