Is there anyone who can able to use the online booking future of wizzair.com
I receive an empty page every time.
I tried the    no_cache deny wizzar directive and clearing the cache.
Still getting an empty result page for any request.

The only way it works if I use a prerouting rule in my firewall script (Fedora Core 5 - squid- 2.5.STABLE14)
iptables -A PREROUTING -d wizzair.site.ip.add -j ACCEPT
and after this line I redirect any http:80 traffic to squid
iptables -t nat -A PREROUTING  -p tcp  -s LAN  --dport 80 -j
REDIRECT --to-ports 3128

my squid.conf without acls:
http_port 192.168.0.1:3128
http_port 127.0.0.1:3128
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
cache_mem 4 MB
maximum_object_size 5120 KB
maximum_object_size_in_memory 100 KB
cache_dir diskd /proxy 900 16 256
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log none
redirect_children 20
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern .               0       20%     4320
http_reply_access allow all
icp_access allow all
httpd_accel_host virtual
httpd_accel_port 0
httpd_accel_with_proxy on
httpd_accel_uses_host_header on
memory_pools off
forwarded_for off
acl wizzair dstdomain wizzair.com
no_cache deny wizzair
snmp_access allow snmppublic localhost
snmp_incoming_address 127.0.0.1
acl buggy_server url_regex ^http://....
broken_posts allow buggy_server
coredump_dir /var/cache
acl PURGE method PURGE
http_access allow PURGE localhost
http_access deny PURGE

Any suggestion would be appreciated.

Zoltan

Reply via email to