Squid 設定-利用 acl 阻擋 facebook

因為要禁止學生趁著下課時間在公用電腦玩 facebook 的應用程式,剛好想說可以用 squid 直接擋掉:

acl facebook_app url_regex -i ^http://apps.facebook.com
acl facebook_app url_regex -i chrom
acl facebook_app url_regex -i firefox
http_access deny facebook_app
deny_info http://you_cant'_use_fb_app facebook_app

繼續閱讀 »

Please follow and like us:

Squid 記錄檔-store.log

From:http://home.arcor.de/mailerstar/jeff/squid/chap13.html
store.log記錄Squid關於存儲或刪除cache目標的決定。對每個存在cache裡的目標、每個不可cache的目標、以及每個被輪換策略刪除的目標,Squid都會創建相應的日誌條目。該日誌文件內容既包含了內存cache又包含了磁盤cache。

繼續閱讀 »

Please follow and like us:

Squid 記錄檔-access.log

From:http://home.arcor.de/mailerstar/jeff/squid/chap13.html
Squid把關於HTTP事務的關鍵信息存放在access.log裡。該文件是基於行的,也就是說每行對應一個客戶端請求。squid記錄客戶端IP(或主機名)、請求URL、響應size、和其他信息。

繼續閱讀 »

Please follow and like us:

Squid 設定-refresh_pattern

From:http://www.bsdlover.cn/html/93/n-1093.html
refresh_pattern的作用:
用於確定一個頁面進入cache後,它在cache中停留的時間。
refresh_pattern規則僅僅應用到沒有明確過時期限的響應。原始服務器能使用Expires頭部,或者Cache-Control:max-age指令來指定過時期限。

繼續閱讀 »

Please follow and like us: