mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-12 05:15:59 +08:00
fix: 修复当网站主域名与网站目录不一致时,定时任务切割网站日志失败 (#1653)
* fix: 网站日志切割定时任务执行失败时打印失败原因,方便排查问题 * fix: 修复SiteDir与主域名不匹配时,切割网站日志失败
This commit is contained in:
parent
30f7fa6afa
commit
b96e988f20
1 changed files with 1 additions and 1 deletions
|
|
@ -359,7 +359,7 @@ func (u *CronjobService) handleCutWebsiteLog(cronjob *model.Cronjob, startTime t
|
||||||
wg.Done()
|
wg.Done()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
websiteLogDir := path.Join(baseDir, website.PrimaryDomain, "log")
|
websiteLogDir := path.Join(baseDir, website.SiteDir, "log")
|
||||||
srcAccessLogPath := path.Join(websiteLogDir, "access.log")
|
srcAccessLogPath := path.Join(websiteLogDir, "access.log")
|
||||||
srcErrorLogPath := path.Join(websiteLogDir, "error.log")
|
srcErrorLogPath := path.Join(websiteLogDir, "error.log")
|
||||||
dstLogDir := path.Join(global.CONF.System.Backup, "log", "website", website.PrimaryDomain)
|
dstLogDir := path.Join(global.CONF.System.Backup, "log", "website", website.PrimaryDomain)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue