Nginx實現瀏覽器可實時查看訪問日誌的步驟詳解

咱們常常須要在頁面上實時查看nginx的日誌輸出,而且能在頁面上顯示,那麼下面小編就給你們說下怎麼在瀏覽器上實時動態的查看nginx的訪問日誌,有須要的朋友們能夠參考借鑑。css

1、首先查看nginx版本,我使用的是1.9.7的版本,安裝目錄在/application/nginx-1.9.7html

[root@AnSheng ~]# /application/nginx-1.9.7/sbin/nginx -V
nginx version: nginx/1.9.7
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC)
configure arguments: --prefix=/application/nginx-1.9.7 --user=nginx --group=nginx --with-http_stub_status_module

2、檢查語法並啓動nginxnginx

[root@AnSheng ~]# /application/nginx-1.9.7/sbin/nginx -t
nginx: the configuration file /application/nginx-1.9.7/conf/nginx.conf syntax is ok
nginx: configuration file /application/nginx-1.9.7/conf/nginx.conf test is successful
[root@AnSheng ~]# /application/nginx-1.9.7/sbin/nginx

3、把nginx配置文件內多餘的注視行和空行刪掉vim

[root@AnSheng ~]# cd /application/nginx-1.9.7/conf/
[root@AnSheng conf]# egrep -v "#|^$" nginx.conf.default
worker_processes 1;
events {
 worker_connections 1024;
}
http {
 include mime.types;
 default_type application/octet-stream;
 sendfile on;
 keepalive_timeout 65;
 server {
  listen 80;
  server_name localhost;
  location / {
   root html;
   index index.html index.htm;
  }
  error_page 500 502 503 504 /50x.html;
  location = /50x.html {
   root html;
  }
 }
}
[root@AnSheng conf]# egrep -v "#|^$" nginx.conf.default nginx.conf

4、在nginx配置文件的server標籤內加入如下標籤和內容瀏覽器

location /logs {
 alias /application/nginx-1.9.7/logs;
 #Nginx日誌目錄

 autoindex on;
 #打開目錄瀏覽功能

 autoindex_exact_size off;
 #默認爲on,顯示出文件的確切大小,單位是bytes
 #顯示出文件的大概大小,單位是kB或者MB或者GB

 autoindex_localtime on;
 #默認爲off,顯示的文件時間爲GMT時間。
 #改成on後,顯示的文件時間爲文件的服務器時間

 add_header Cache-Control no-store;
 #讓瀏覽器不保存臨時文件
}

5、開啓在瀏覽器打開log文件,若是不開啓再點擊文件的時候就下載而不是打開安全

[root@AnSheng conf]# vim mime.types
types {
 text/html html htm shtml;
 text/log log;
 text/css css;
 text/xml xml;
 .............

6、檢測語法,而後讓nginx配置生效,在瀏覽器查看服務器

[root@AnSheng conf]# /application/nginx-1.9.7/sbin/nginx -t
nginx: the configuration file /application/nginx-1.9.7/conf/nginx.conf syntax is ok
nginx: configuration file /application/nginx-1.9.7/conf/nginx.conf test is successful
[root@AnSheng conf]# /application/nginx-1.9.7/sbin/nginx -s reload

打開瀏覽器輸入域名或者IP,後面加上logs,而後點擊文件就能夠打開了,若是日誌隨隨便便就能夠被別人查看是否是很不安全,因此咱們要在加一層nginx用戶認證。app

7、安裝httpd-tools,用於賬號密碼生成學習

[root@AnSheng ~]# yum -y install httpd-tools

8、建立認證的帳號ui

[root@AnSheng ~]# htpasswd -c /application/nginx-1.9.7/conf/loguser loguser
New password:
Re-type new password:
Adding password for user loguser
#密碼須要輸入兩次

9、編輯nginx配置文件,在logs的location加入下面的內容

location /logs {
 ......
 alias PATH;
 autoindex on;
 autoindex_exact_size off;
 autoindex_localtime on;
 add_header Cache-Control no-store;
 auth_basic "Restricted";
 #Nginx認證
 auth_basic_user_file /application/nginx-1.9.7/conf/loguser;
 #認證帳號密碼保存的文件
}

10、而後再打開的時候就會提示輸入帳號和密碼,登錄以後才能夠查看。

11、總結

以上就是利用Nginx實現瀏覽器可實時查看訪問日誌的所有步驟,但願對你們的學習或者工做有所幫助,若是有疑問你們能夠留言交流。

相關文章
相關標籤/搜索