鼎鼎知识库
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11监控access日志以及可视化.md 431B

--下载:sudo apt-get install goaccess
--设置:goaccess access.log -o ../html/report.html --real-time-html --time-format='%H:%M:%S' --date-format='%d/%b/%Y' --log-format=COMBINED

	WebSocket server ready to accept new client connections
--设置:sudo /etc/nginx/sites-available/default

server {
	listen 8080;
	access_log logs/access.log main;
	location /report.html {
		alias /usr/local/html/report.html
	
	}

}