Ok, I have resolved my problem about resize.
The solution is to add a location to the path. Like that :
location ~ /media/test/(.*) {
image_filter resize 50 10;
proxy_pass http://127.0.0.1/my_image/$1
}
location /my_image {
alias /var/www/html/toto/;
}
The solution is to add a location to the path. Like that :
location ~ /media/test/(.*) {
image_filter resize 50 10;
proxy_pass http://127.0.0.1/my_image/$1
}
location /my_image {
alias /var/www/html/toto/;
}