Nginx: PV、UV、獨立IP
做網(wǎng)站的都知道,平常經常要查詢下網(wǎng)站PV、UV等網(wǎng)站的訪問數(shù)據(jù),當然如果網(wǎng)站做了CDN的話,nginx本地的日志就沒什么意義了,下面就對nginx網(wǎng)站的日志訪問數(shù)據(jù)做下統(tǒng)計;
概念:
先聲明下環(huán)境,此次運行的nginx版本1.7,后端Tomcat運行的是動態(tài)交互程序(需進行用戶認證,如果是靜態(tài)頁面則抓不到cache值,$http_cookie是空值),就是這樣;
nginx日志文件配置
http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - [$time_local] "$request" ' ' - $status "User_Cookie:$guid" '; #User_Cookie為日志顯示字符,$guid為變量,具體內容在下面定義,也可在日志格式里寫入$http_cookie 顯示完整的cookie內容
sendfile on; keepalive_timeout 65; upstream backserver { ip_hash; server 1.1.2.2:8080; server 1.1.2.3:8080; } server { listen 80; server_name localhost; #if ( $http_cookie ~* "(.*)$") 匹配所有內容 if ( $http_cookie ~* "CSID=([A-Z0-9]*)"){ set $guid $1; } #只匹配CSID字符信息,此處為正則表達式
access_log logs/host.access.log main; location ~* ^(.*)$ { #limit_req zone=allips burst=1 nodelay; proxy_pass http://backserver; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 8m; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。