1.修改nginx.conf
location /logs {
alias /home/data/logs; #日志文件目錄路徑
autoindex on;
autoindex_exact_size off;
autoindex_localtime on; #默認(rèn)為off,顯示的文件時(shí)間為GMT時(shí)間。改為on后畔勤,顯示的文件時(shí)間為文件的服務(wù)器時(shí)間
add_header Cache-Control no-store; #讓瀏覽器不保存臨時(shí)文件
allow 114.242.192.133; #出于安全考慮可以設(shè)置ip白名單距境,或者使用下面的密碼訪(fǎng)問(wèn)策略
deny all;
}
2.修改 mime.type
在其中新增
text/log log; 以log為擴(kuò)展名的文件庆聘,如果目錄下有其它類(lèi)型的日志文件需要查看贾节,可以進(jìn)行增加限煞,例如: text/log json;
3.密碼訪(fǎng)問(wèn)策略
1、yum -y install httpd-tools
2教届、htpasswd -c /usr/local/nginx/conf/loguser wjoyxt
3、在以上修改的conf配置文件中增加兩行:
auth_basic "Restricted";
auth_basic_user_file /usr/local/nginx/conf/loguser; #認(rèn)證賬號(hào)密碼保存的文件
4.重啟nginx
nginx -s reload