Selaa lähdekoodia

fix: AccessLogPath being replaced by PIDPath (#228)

Buco 1 vuosi sitten
vanhempi
commit
d4d5bd41c2
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      internal/nginx/config_args.go

+ 1 - 1
internal/nginx/config_args.go

@@ -75,7 +75,7 @@ func GetAccessLogPath() (path string) {
 		}
 		path = match[1]
 	} else {
-		path = settings.NginxSettings.PIDPath
+		path = settings.NginxSettings.AccessLogPath
 	}
 
 	return path