Counter

tl;dr:
给自己的静态博客增加一个访问统计,效果如下: https://shrik3.com/misc/report.html

之前用过卜蒜子,但它好像挂了。后来想了想,完全没必要统计啊,咱nginx不是有log吗,直接分析一下log就啥都有了。

搜索了一下发现了Visitors 这个工具,可以用crontab定时生成访问报告,放在网站静态目录下:

report.sh

OUTPUT=/srv/www/static/misc/report.html
LOG=/var/log/nginx/blog.log

visitors -A -m 30 $LOG -o html --trails --prefix https://domain.com > $OUTPUT
chown http:http $OUTPUT

crontab -e

0 * * * * sh /PATH/TO/report.sh

(每小时更新一次)

edited 20.04.2024
created 01.05.2022
EOF
[+] click to leave a comment [+]
the comment system on this blog works via email. The button
below will generate a mailto: link based on this page's url 
and invoke your email client - please edit the comment there!

[optional] even better, encrypt the email with my public key

- don't modify the subject field
- specify a nickname, otherwise your comment will be shown as   
  anonymous
- your email address will not be disclosed
- you agree that the comment is to be made public.
- to take down a comment, send the request via email.

>> SEND COMMENT <<