Slide 13
Slide 13 text
ͨͱ͑ngx_small_lightΛ͏
server {
listen 8000;
server_name localhost;
small_light on;
small_light_pattern_define square dw=400,dh=400,da=l,q=95,e=imagemagick,jpeghint=y;
# http://localhost:8000/small_light(p=square)/input.jpg
location ~ small_light[^/]*/(.+)$ {
set $file $1;
rewrite ^ /$file;
}
}