Нужно создать локальный кеш Yandex Maps, нашол конфиг немного поправил
оригинал в блоге http://yvoinov.blogspot.com/2015/09/squid-3-yandex-maps.html
версия squid 3.5, FreeBSD 11
acl store_rewrite_list_web url_regex "/usr/local/etc/squid/url.rewrite_web"
acl GET method GET
cat /usr/local/etc/squid/url.rewrite_web:
# Yandex maps
vec[\d][\d]\.maps\.yandex\.net
lrs\.maps\.yandex\.net
stv\.maps\.yandex\.net
cat /usr/local/etc/squid/squid.conf:
# Storeurl rewriter
store_id_program /usr/local/squid/libexec/storeid_file_rewrite /usr/local/etc/squid/storeid.conf
store_id_children 32 startup=0 idle=1 concurrency=0
# Store ID access
store_id_access deny !GET
store_id_access allow store_rewrite_list
store_id_access allow store_rewrite_list_web
store_id_access allow store_rewrite_list_web_cdn
store_id_access deny all
store_id_bypass off
cat /usr/local/etc/squid/storeid.conf:
vec[\d][\d]\.maps\.yandex\.net\/tiles\?.*x=([^&]+).*&y=([^&]+).*&z=([^&]+).*&lang=([^&]+) http://ymaps-vec.squidinternal/$1/$2/$3/$4
lrs\.maps\.yandex\.net\/tiles\?.*x=([^&]+).*&y=([^&]+).*&z=([^&]+).*&lang=([^&]+) http://ymaps-lrs.squidinternal/$1/$2/$3/$4
stv\.maps\.yandex\.net\/images\/.*oid=([^&]+).*x=([^&]+).*&y=([^&]+).*&z=([^&]+) http://ymaps-stv.squidinternal/$1/$2/$3/$4
Запуск squid
Starting squid.
2017/01/25 16:21:11| ACL not found: store_rewrite_list
FATAL: Bungled /usr/local/etc/squid/squid.conf line 86: store_id_access allow store_rewrite_list
Squid Cache (Version 3.5.23): Terminated abnormally.
CPU Usage: 0.005 seconds = 0.000 user + 0.005 sys
Maximum Resident Size: 23040 KB
Page faults with physical i/o: 0
/usr/local/etc/rc.d/squid: WARNING: failed to start squid
Подскажите пожалуйста куда смотреть, и что почитать?
store_rewrite_list
store_rewrite_list_web
store_rewrite_list_web_cdn нужно создать вручную ?
И зачем нужен !GET ?