Nginx
38
Вклад в тег
#!/bin/bash
if ! [ $3 ];then
precent=6
else
precent=$3
fi
ls $1 > ls.log
while read line
do
[ $[ $RANDOM % $precent ] == 0 ] && cp -R $1/$line $2
done < ls.log
location ~* ^.+\.(svg|svgz|ttf|jpg|jpeg|gif|png|ico|webp)$ {
try_files $uri @prod;
access_log off;
expires 8d;
}
location @prod {
proxy_pass http://prod.ru;
}