Install
nginx -V 2>&1 | tr -- - '\n' | grep _module
sudo apt install libnginx-mod-http-image-filter
ls /etc/nginx/modules-*
Load module
# nginx.conf
load_module modules/ngx_http_image_filter_module.so;
conf
# app.conf
location /img/ {
image_filter resize 240 360;
image_filter rotate 180;
image_filter_buffer 16M;
}
Ref: