Forráskód Böngészése

fix: nginx logs manual link error #201

close #201
0xJacky 1 éve
szülő
commit
4b567e474c
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      server/api/nginx_log.go

+ 2 - 2
server/api/nginx_log.go

@@ -143,7 +143,7 @@ func getLogPath(control *controlStruct) (logPath string, err error) {
 	case "error":
 		if settings.NginxSettings.ErrorLogPath == "" {
 			err = errors.New("settings.NginxLogSettings.ErrorLogPath is empty," +
-				" see https://github.com/0xJacky/nginx-ui/wiki/Nginx-Log-Configuration for more information")
+				" refer to https://nginxui.com/zh_CN/guide/config-nginx-log.html for more information")
 			return
 		}
 		logPath = settings.NginxSettings.ErrorLogPath
@@ -151,7 +151,7 @@ func getLogPath(control *controlStruct) (logPath string, err error) {
 	default:
 		if settings.NginxSettings.AccessLogPath == "" {
 			err = errors.New("settings.NginxLogSettings.AccessLogPath is empty," +
-				" see https://github.com/0xJacky/nginx-ui/wiki/Nginx-Log-Configuration for more information")
+				" refer to https://nginxui.com/zh_CN/guide/config-nginx-log.html for more information")
 			return
 		}
 		logPath = settings.NginxSettings.AccessLogPath