Voila j’aimerais rediriger toute les requeteweb d’un reséau vers une page
j’arrive pour le htpp mais pas pour le htpps
fichier de conf squid
url_rewrite_program /usr/bin/squidGuard -c /etc/squidguard/squidGuard.conf
acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
acl LocalNet src ....16....0/24
acl LocalNet2 src ...17....0/24
###########################################
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow LocalNet
http_access allow LocalNet2
http_access deny all
http_port 3128
et pour squidguard
[code]src admin {
ip …16…12
}
src toto{
ip …17…0/24
}
acl {
admin {
pass any
}
wifi {
pass none
redirect http://www........local
}
default {
pass none
redirect http://www.......local
}
[/code]
merci