Community discussions

MikroTik App
 
giobulia
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 52
Joined: Thu Jun 23, 2011 4:30 pm

Web proxy cache

Fri Jun 01, 2012 10:02 pm

Hello,

I have cache and I have 1 problem.

I do not want cache under 5 mb files or do not want cache videos. is it possible?

i want only cache images, css, swf

do not want flv and other files. is it possible?

my config:
Image

thanks
 
Devil
Member Candidate
Member Candidate
Posts: 170
Joined: Thu Jul 21, 2011 9:13 am

Re: Web proxy cache

Sat Jun 02, 2012 4:58 pm

See if something like this works:
/ip proxy cache add path=*.jpg action=allow
/ip proxy cache add path=*.jpeg action=allow
/ip proxy cache add path=*.png action=allow
/ip proxy cache add path=*.gif action=allow
/ip proxy cache add path=*.tif action=allow
/ip proxy cache add path=*.tiff action=allow
/ip proxy cache add path=*.bmp action=allow
/ip proxy cache add path=*.css action=allow
/ip proxy cache add path=*.swf action=allow
/ip proxy cache add action=deny
 
giobulia
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 52
Joined: Thu Jun 23, 2011 4:30 pm

Re: Web proxy cache

Sat Jun 02, 2012 10:23 pm

It works. thank you!