LATEST !!!
ok, so after i changed my proxy definitions to my squid proxy server i could now see data in my access.log file.
it seems to be working fine.
my last problem is that i dont want to need to configure the proxy on my browser to access the web.
here goes my latest squid.conf file
http_port 3128
cache_peer proxy.ua.pt parent 3128 3130 proxy-only no-netdb-exchange default no-query no-digest
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
cache_access_log /var/log/squid/access.log
emulate_httpd_log on
log_fqdn on
hosts_file /etc/hosts
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl ruilaa src 193.136.82.194/255.255.255.255
acl tux src 193.137.86.170/255.255.255.255
acl it src 193.136.92.0/255.255.255.0
acl it1 src 193.136.93.0/255.255.255.0
acl vpn src 192.168.140.0/255.255.255.0
acl vpn1 src 192.168.120.0/255.255.255.0
acl vpn2 src 192.168.1.0/255.255.255.0
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563 873 1863 5222 # https, snews
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
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 Safe_ports port 631 # cups
acl Safe_ports port 873 # rsync
acl Safe_ports port 901 # SWAT
acl Safe_ports port 1863 # MSN
acl MSN port 1863 # MSN
acl JABBER port 5222 # Jabber / Google Talk
acl purge method PURGE
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow all
http_access allow localhost
http_access allow localhost
http_access allow it
http_access allow it1
http_access allow vpn
http_access allow vpn1
http_access allow vpn2
http_access allow ruilaa
http_access allow tux
http_access deny all
http_reply_access allow all
icp_access allow all
visible_hostname hng.av.it.pt
always_direct allow MSN
always_direct allow JABBER
never_direct deny MSN
never_direct deny JABBER
never_direct allow all
coredump_dir /var/spool/squid
client_persistent_connections on
server_persistent_connections on
pipeline_prefetch on
httpd_accel_host virtual
httpd_accel_port 80
httpd_accel_with_proxy on
httpd_accel_uses_host_header on
|