Squid3 URLrewrite - Não é possível configurar

1

Eu tenho o Squid3-3.4.8 no Debian Wheezy. Está executando o dever de armazenamento em cache. Eu só quero substituir uma URL jpg para outra URL no meu servidor local ou fora. Eu tentei soluções como Volta , squidred , asqredir .

Para Volta, estou preso em:

root@S:~/Volta/volta-0.3.0# make
Package lua5.2 was not found in the pkg-config search path.
Perhaps you should add the directory containing 'lua5.2.pc'
to the PKG_CONFIG_PATH environment variable
No package 'lua5.2' found
cc -O2 -L/usr/lib -I/usr/include    -c -o accept_loop.o accept_loop.c
In file included from accept_loop.c:31:0:
volta.h:77:17: fatal error: lua.h: No such file or directory
compilation terminated.
make: *** [accept_loop.o] Error 1

Lua está em:

/root/Lua/lua-5.3.3 Eu estava seguindo o procedimento em um arquivo INSTALL .

O que mais pode usar para realizar minha tarefa?

Existe algum outro aplicativo que eu possa usar para ter sucesso em fazer uma reescrita de URL?

Origem: https://bitbucket.org/mahlon/volta/overview

    
por user359944 10.06.2016 / 15:48

1 resposta

0

replace one jpg url to another url in my local server

Não seria mais simples apenas escrever o seu próprio:

#!/usr/bin/perl

$| = 1;
while (<>) {
   @line = split;
   $_ = $line[0];
   s/www\.example\.com\/one\.jpg/www.example.com\/other.jpg/g;
   print $_ . "\n";
}
    
por 10.06.2016 / 18:06