略
PS:ngxin 在 linux中,会按天切割日志。如果想要随时切割日志,同理。
nginx.exe -s reopen
将下面的文件保存为bat文件:
set nginxBinPath=d:\nginx
set nginxLogPath=d:\nginx\logs
set timstamp=%date:~0,4%-%date:~5,2%-%date:~8,2%_%time:~0,2%%time:~3,2%%time:~6,2%
cd /d %nginxLogPath%
move access.log access_%timstamp%.log
move error.log error_%timstamp%.log
cd /d %nginxBinPath%
nginx -s reload
测试通过后,添加任务计划程序
中进行执行。