awstat分析nginx日志

http://lxw66.blog.51cto.com/5547576/1323712

 

server{
    listen 8080;
    server_name localhost;
    index index.html index.htmindex.php default.html default.htm default.php;
    root  /home/www/awstats;
    location ~ ^/awstats/ {    #html静态页面目录
        root   /home/www/awstats;
        index  index.html;
        access_log off;
    }

    location ^~ /icon/ {    #图标目录
        root   /usr/local/awstats/wwwroot;
        index  index.html;
        access_log off;
    }

    utoindex on;        #开启目录浏览功能
        access_log off;
}

 

 

 

awstat分析nginx日志

awstat分析nginx日志

相关文章:

  • 2022-12-23
  • 2021-04-07
  • 2022-01-16
  • 2021-07-20
  • 2021-08-10
  • 2022-01-04
  • 2021-05-31
猜你喜欢
  • 2022-01-04
  • 2021-04-23
  • 2021-09-21
  • 2021-12-08
  • 2022-02-17
相关资源
相似解决方案